diff options
-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 40546fb..cd7602b 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 5922614..b8d0f1b 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; } } } |