Commit d1caaa76 by Daniel Berlin Committed by Daniel Berlin

Don't mark statements modified when we are in ipa mode

From-SVN: r137189
parent edae5fe3
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);
}
......
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