Commit d73d4593 by Nathan Sidwell Committed by Nathan Sidwell

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

From-SVN: r87228
parent c6614d3e
2004-09-09 Nathan Sidwell <nathan@codesourcery.com> 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-outof-ssa.c (free_temp_expr_table): Add missed assert.
* tree-ssa-ccp.c (set_lattice_value): Correct missapplied de * tree-ssa-ccp.c (set_lattice_value): Correct missapplied de
Morgan's theorem in last checkin. Morgan's theorem in last checkin.
......
...@@ -135,7 +135,7 @@ create_tmp_var_for (struct nesting_info *info, tree type, const char *prefix) ...@@ -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 /* 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 frontend, something is wrong. Note that we explicitly allow
incomplete types here, since we create them ourselves here. */ 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) gcc_assert (!TYPE_SIZE_UNIT (type)
|| TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST); || TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment