diff options
Diffstat (limited to 'gcc')
| -rw-r--r-- | gcc/ChangeLog | 7 | ||||
| -rw-r--r-- | gcc/passes.c | 6 |
2 files changed, 9 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f7ccd52..1ba3fac 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2005-09-16 Paolo Bonzini <bonzini@gnu.org> + + PR 23903 + + * passes.c (init_optimization_passes): Register dump files for + IPA passes first. + 2005-09-16 Andreas Krebbel <krebbel1@de.ibm.com> * config/s390/s390-protos.h (s390_overlap_p): Prototype added. diff --git a/gcc/passes.c b/gcc/passes.c index 86d38cf..c5b4212 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; |
