Commit 7ffa47ca by Richard Guenther Committed by Richard Biener

tree-ssa-pre.c (eliminate): Use TODO_update_ssa_only_virtuals, not TODO_update_ssa.

2009-05-15  Richard Guenther  <rguenther@suse.de>

	* tree-ssa-pre.c (eliminate): Use TODO_update_ssa_only_virtuals,
	not TODO_update_ssa.

From-SVN: r147574
parent 828552ed
2009-05-15 Richard Guenther <rguenther@suse.de> 2009-05-15 Richard Guenther <rguenther@suse.de>
* tree-ssa-pre.c (eliminate): Use TODO_update_ssa_only_virtuals,
not TODO_update_ssa.
2009-05-15 Richard Guenther <rguenther@suse.de>
PR tree-optimization/39999 PR tree-optimization/39999
* gimple.h (gimple_expr_type): Use the expression type looking * gimple.h (gimple_expr_type): Use the expression type looking
through useless conversions. through useless conversions.
......
...@@ -4135,7 +4135,7 @@ eliminate (void) ...@@ -4135,7 +4135,7 @@ eliminate (void)
/* Changing an indirect call to a direct call may /* Changing an indirect call to a direct call may
have exposed different semantics. This may have exposed different semantics. This may
require an SSA update. */ require an SSA update. */
todo |= TODO_update_ssa; todo |= TODO_update_ssa_only_virtuals;
} }
} }
} }
......
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