diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f7ccd52ea39..1ba3fac2d02 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2005-09-16 Paolo Bonzini + + PR 23903 + + * passes.c (init_optimization_passes): Register dump files for + IPA passes first. + 2005-09-16 Andreas Krebbel * config/s390/s390-protos.h (s390_overlap_p): Prototype added. diff --git a/gcc/passes.c b/gcc/passes.c index 86d38cfc0a0..c5b42123430 100644 --- a/gcc/passes.c +++ b/gcc/passes.c @@ -656,11 +656,9 @@ init_optimization_passes (void) #undef NEXT_PASS /* Register the passes with the tree dump code. */ + register_dump_files (all_ipa_passes, true, PROP_gimple_leh | PROP_cfg); register_dump_files (all_lowering_passes, false, PROP_gimple_any); - register_dump_files (all_passes, false, PROP_gimple_leh - | PROP_cfg); - register_dump_files (all_ipa_passes, true, PROP_gimple_leh - | PROP_cfg); + register_dump_files (all_passes, false, PROP_gimple_leh | PROP_cfg); } static unsigned int last_verified;