diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-05-15 13:16:12 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-05-15 13:16:12 +0000 |
commit | 1b536c34190c66bddcbe5688f8e7e90d0ce685c4 (patch) | |
tree | 53334ea98ba719e48e5a6b6ead9fda6b320a15b1 /gcc | |
parent | a1157bfecf3a552d12e2c43d7d0520c3c7530437 (diff) | |
download | gcc-1b536c34190c66bddcbe5688f8e7e90d0ce685c4.tar.gz |
2009-05-15 Richard Guenther <rguenther@suse.de>
* tree-ssa-pre.c (eliminate): Use TODO_update_ssa_only_virtuals,
not TODO_update_ssa.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@147574 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree-ssa-pre.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 40546fbf092..cd7602bf59b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 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 * gimple.h (gimple_expr_type): Use the expression type looking through useless conversions. diff --git a/gcc/tree-ssa-pre.c b/gcc/tree-ssa-pre.c index 592261420c1..b8d0f1b84a1 100644 --- a/gcc/tree-ssa-pre.c +++ b/gcc/tree-ssa-pre.c @@ -4135,7 +4135,7 @@ eliminate (void) /* Changing an indirect call to a direct call may have exposed different semantics. This may require an SSA update. */ - todo |= TODO_update_ssa; + todo |= TODO_update_ssa_only_virtuals; } } } |