mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-19 03:50:26 +08:00
Don't mark statements modified when we are in ipa mode
From-SVN: r137189
This commit is contained in:
parent
edae5fe3f2
commit
d1caaa7618
@ -1,3 +1,8 @@
|
||||
2008-06-27 Daniel Berlin <dberlin@dberlin.org>
|
||||
|
||||
* tree-ssa-structalias.c (find_func_aliases): Trivial fix to get
|
||||
ipa-pta working again.
|
||||
|
||||
2008-06-27 David Edelsohn <edelsohn@gnu.org>
|
||||
|
||||
* config/rs6000/t-aix52: Append large data option to LDFLAGS for
|
||||
|
@ -3897,7 +3897,8 @@ find_func_aliases (tree origt)
|
||||
need to re-scan most statements. FIXME: Try to minimize the
|
||||
number of statements re-scanned. It's not really necessary to
|
||||
re-scan *all* statements. */
|
||||
mark_stmt_modified (origt);
|
||||
if (!in_ipa_mode)
|
||||
mark_stmt_modified (origt);
|
||||
VEC_free (ce_s, heap, rhsc);
|
||||
VEC_free (ce_s, heap, lhsc);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user