diff options
author | Geoffrey Keating <geoffk@redhat.com> | 2001-07-13 17:24:48 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2001-07-13 17:24:48 +0000 |
commit | 998d20d22a7632ac162773c0561bc8cd6f269f26 (patch) | |
tree | e56c88ab85654a27ddc609666a10878d5099f75d /gcc/reg-stack.c | |
parent | 4a9d51090acc89a3bed7d1bae7f9d4e1da267243 (diff) | |
download | gcc-998d20d22a7632ac162773c0561bc8cd6f269f26.zip gcc-998d20d22a7632ac162773c0561bc8cd6f269f26.tar.gz gcc-998d20d22a7632ac162773c0561bc8cd6f269f26.tar.bz2 |
Revert Jan Hubicka's patch of Fri Jul 13 14:46:21 CEST 2001.
From-SVN: r43986
Diffstat (limited to 'gcc/reg-stack.c')
-rw-r--r-- | gcc/reg-stack.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/reg-stack.c b/gcc/reg-stack.c index bdd1c98..af5453d 100644 --- a/gcc/reg-stack.c +++ b/gcc/reg-stack.c @@ -419,9 +419,6 @@ reg_to_stack (first, file) int max_uid; block_info bi; - if (!optimize) - split_all_insns (0); - /* See if there is something to do. Flow analysis is quite expensive so we might save some compilation time. */ for (i = FIRST_STACK_REG; i <= LAST_STACK_REG; i++) @@ -432,8 +429,7 @@ reg_to_stack (first, file) /* Ok, floating point instructions exist. If not optimizing, build the CFG and run life analysis. */ - if (!optimize) - find_basic_blocks (first, max_reg_num (), file); + find_basic_blocks (first, max_reg_num (), file); count_or_remove_death_notes (NULL, 1); life_analysis (first, file, PROP_DEATH_NOTES); |