diff options
author | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-10-28 21:20:01 +0000 |
---|---|---|
committer | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-10-28 21:20:01 +0000 |
commit | d6cbad057eea2b6a6be3c6c22e6d2570bf947522 (patch) | |
tree | cfa701946bbb851728d22a424767549aca0d15c9 /gcc/recog.c | |
parent | 5c752e4705d4d4ac527c71d1e8df6e84571324a3 (diff) | |
download | gcc-d6cbad057eea2b6a6be3c6c22e6d2570bf947522.tar.gz |
2010-10-28 Paolo Bonzini <bonzini@gnu.org>
* recog.c (split_all_insns): Remove dead code.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@166048 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/recog.c')
-rw-r--r-- | gcc/recog.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/gcc/recog.c b/gcc/recog.c index 3ab72f10dd3..1a4824a5f9b 100644 --- a/gcc/recog.c +++ b/gcc/recog.c @@ -2868,15 +2868,8 @@ split_all_insns (void) } else { - rtx last = split_insn (insn); - if (last) + if (split_insn (insn)) { - /* The split sequence may include barrier, but the - BB boundary we are interested in will be set to - previous one. */ - - while (BARRIER_P (last)) - last = PREV_INSN (last); SET_BIT (blocks, bb->index); changed = true; } |