* tree-nested.c (create_tmp_var_for): Correct missinverted assert.

From-SVN: r87228
This commit is contained in:
Nathan Sidwell 2004-09-09 10:36:11 +00:00 committed by Nathan Sidwell
parent c6614d3ea3
commit d73d459345
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2004-09-09 Nathan Sidwell <nathan@codesourcery.com>
* tree-nested.c (create_tmp_var_for): Correct missinverted assert.
* tree-outof-ssa.c (free_temp_expr_table): Add missed assert.
* tree-ssa-ccp.c (set_lattice_value): Correct missapplied de
Morgan's theorem in last checkin.

View File

@ -135,7 +135,7 @@ create_tmp_var_for (struct nesting_info *info, tree type, const char *prefix)
/* If the type is of variable size or a type which must be created by the
frontend, something is wrong. Note that we explicitly allow
incomplete types here, since we create them ourselves here. */
gcc_assert (TREE_ADDRESSABLE (type));
gcc_assert (!TREE_ADDRESSABLE (type));
gcc_assert (!TYPE_SIZE_UNIT (type)
|| TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST);