diff options
author | Simon Baldwin <simonb@google.com> | 2007-06-08 16:15:41 +0000 |
---|---|---|
committer | Simon Baldwin <simonb@gcc.gnu.org> | 2007-06-08 16:15:41 +0000 |
commit | 2c5cfd1fc63228d242b400b8d1e6c9683b522508 (patch) | |
tree | 100d840ef4be565c38aa51f0f89e8f7de79a2465 /gcc/tree-flow-inline.h | |
parent | 9735f6ba52f51011cf81f8b6e438edae371177f3 (diff) | |
download | gcc-2c5cfd1fc63228d242b400b8d1e6c9683b522508.tar.gz |
tree-flow-inline.h (var_ann): Replaced erroneous '=' assignment in gcc_assert() with '==' comparison.
* tree-flow-inline.h (var_ann): Replaced erroneous '=' assignment
in gcc_assert() with '==' comparison.
From-SVN: r125573
Diffstat (limited to 'gcc/tree-flow-inline.h')
-rw-r--r-- | gcc/tree-flow-inline.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-flow-inline.h b/gcc/tree-flow-inline.h index dc4b2d16a51..cb2f6558943 100644 --- a/gcc/tree-flow-inline.h +++ b/gcc/tree-flow-inline.h @@ -210,7 +210,7 @@ var_ann (tree t) htab_find_with_hash (gimple_var_anns (cfun), t, DECL_UID (t))); if (!sann) return NULL; - gcc_assert (sann->ann.common.type = VAR_ANN); + gcc_assert (sann->ann.common.type == VAR_ANN); return &sann->ann; } gcc_assert (!t->base.ann |