diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-24 18:34:07 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-24 18:34:07 +0000 |
commit | 161b164781a41d10e6cb0a334ea0a066de54be3d (patch) | |
tree | dbd1c911e2888cbe05c5a4a364044144567b2dcd /gcc/config/sh/sh.c | |
parent | 898e4fdd21e1148353a34a49c5e7c2c4172811b1 (diff) | |
download | gcc-161b164781a41d10e6cb0a334ea0a066de54be3d.tar.gz |
* recog.c (split_all_insns_noflow): New.
* rtl.h (split_all_insns_noflow): Declare.
* ia64.c (ia64_reorg): Use split_all_insns_noflow.
* m68hc11.c (m68hc11_reorg): Likewise.
* sh.c (machine_dependent_reorg): Likewise.
* toplev.c (rest_of_compilation): Likewise for last split_all_insns
call.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44312 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/sh/sh.c')
-rw-r--r-- | gcc/config/sh/sh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/sh/sh.c b/gcc/config/sh/sh.c index a9813697501..87b5be9ee9e 100644 --- a/gcc/config/sh/sh.c +++ b/gcc/config/sh/sh.c @@ -3027,7 +3027,7 @@ machine_dependent_reorg (first) optimizing, they'll have already been split. Otherwise, make sure we don't split them too late. */ if (! optimize) - split_all_insns (0); + split_all_insns_noflow (); /* If relaxing, generate pseudo-ops to associate function calls with the symbols they call. It does no harm to not generate these |