On Fri, Oct 12, 2012 at 12:37:09PM -0400, Diego Novillo wrote:
> >--- gcc/passes.c.jj 2012-10-11 19:10:39.000000000 +0200
> >+++ gcc/passes.c 2012-10-12 10:03:18.523456291 +0200
> >@@ -1545,6 +1545,7 @@ init_optimization_passes (void)
> > NEXT_PASS (pass_tm_edges);
> > }
> > NEXT_PASS (pass_lower_complex_O0);
> >+ NEXT_PASS (pass_asan_O0);
>
> Any particular reason to place it here? Not that it matters much.
> Just curious.
Just some location after IPA (so that it is performed even for -flto -O0)
and before final, picked a spot close to another -O0 only pass...
Jakub