diff options
author | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-28 09:51:56 +0000 |
---|---|---|
committer | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-28 09:51:56 +0000 |
commit | afb2402b0c4d285219b3d31ed637648b727b5406 (patch) | |
tree | 48a32764a7e78f9c4632888c437d9486902ab45d /gcc/cfgrtl.c | |
parent | 9742c4e4cd0a6d748c2956c333da4174cb478ed3 (diff) | |
download | gcc-afb2402b0c4d285219b3d31ed637648b727b5406.tar.gz |
PR optimization/14229
* cfgrtl.c (rtl_tidy_fallthru_edge): Do not fail for !onlyjump jump.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78605 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgrtl.c')
-rw-r--r-- | gcc/cfgrtl.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c index f35263f14e0..35d7c9ebe1b 100644 --- a/gcc/cfgrtl.c +++ b/gcc/cfgrtl.c @@ -1130,11 +1130,6 @@ rtl_tidy_fallthru_edge (edge e) rtx q; basic_block b = e->src, c = b->next_bb; - /* If the jump insn has side effects, we can't tidy the edge. */ - if (GET_CODE (BB_END (b)) == JUMP_INSN - && !onlyjump_p (BB_END (b))) - return; - /* ??? In a late-running flow pass, other folks may have deleted basic blocks by nopping out blocks, leaving multiple BARRIERs between here and the target label. They ought to be chastized and fixed. |