diff options
author | Jan Hubicka <jh@suse.cz> | 2002-03-28 19:16:18 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2002-03-28 18:16:18 +0000 |
commit | b1d874d7b19e09b07657ace24315e9ee279a9ae9 (patch) | |
tree | 7de379804e9a6f83ababdb86ed2a5df3d028ca84 /gcc/ifcvt.c | |
parent | 4d00945e4553dc28cbd9a806abd5ed8215aaa73c (diff) | |
download | gcc-b1d874d7b19e09b07657ace24315e9ee279a9ae9.zip gcc-b1d874d7b19e09b07657ace24315e9ee279a9ae9.tar.gz gcc-b1d874d7b19e09b07657ace24315e9ee279a9ae9.tar.bz2 |
* ifcvt.c (if_convert): Clear aux_for_blocks early enought.
From-SVN: r51516
Diffstat (limited to 'gcc/ifcvt.c')
-rw-r--r-- | gcc/ifcvt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/ifcvt.c b/gcc/ifcvt.c index f912654..207ff5c 100644 --- a/gcc/ifcvt.c +++ b/gcc/ifcvt.c @@ -2701,6 +2701,8 @@ if_convert (x_life_data_ok) if (rtl_dump_file) fflush (rtl_dump_file); + clear_aux_for_blocks (); + /* Rebuild life info for basic blocks that require it. */ if (num_removed_blocks && life_data_ok) { @@ -2714,7 +2716,6 @@ if_convert (x_life_data_ok) PROP_DEATH_NOTES | PROP_SCAN_DEAD_CODE | PROP_KILL_DEAD_CODE); } - clear_aux_for_blocks (); /* Write the final stats. */ if (rtl_dump_file && num_possible_if_blocks > 0) |