Remove unnecessary check. isDelayFiller(MBB, I) will evaluate to true before

I->getDesc().hasDelaySlot() does.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141148 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Akira Hatanaka 2011-10-05 01:15:31 +00:00
parent cfc3fb5737
commit f2f70c2493

View File

@ -146,7 +146,6 @@ Filler::findDelayInstr(MachineBasicBlock &MBB,
if (I->hasUnmodeledSideEffects()
|| I->isInlineAsm()
|| I->isLabel()
|| I->getDesc().hasDelaySlot()
|| isDelayFiller(MBB, I)
|| I->getDesc().isPseudo()
//