mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Don't grab the condition of unconditional branches!
This fixes PR363 llvm-svn: 14076
This commit is contained in:
parent
91a3d0f55f
commit
9579beadfe
@ -442,14 +442,15 @@ Value *Loop::getTripCount() const {
|
||||
IV->getIncomingBlock(contains(IV->getIncomingBlock(1)));
|
||||
|
||||
if (BranchInst *BI = dyn_cast<BranchInst>(BackedgeBlock->getTerminator()))
|
||||
if (SetCondInst *SCI = dyn_cast<SetCondInst>(BI->getCondition()))
|
||||
if (SCI->getOperand(0) == Inc)
|
||||
if (BI->getSuccessor(0) == getHeader()) {
|
||||
if (SCI->getOpcode() == Instruction::SetNE)
|
||||
if (BI->isConditional())
|
||||
if (SetCondInst *SCI = dyn_cast<SetCondInst>(BI->getCondition()))
|
||||
if (SCI->getOperand(0) == Inc)
|
||||
if (BI->getSuccessor(0) == getHeader()) {
|
||||
if (SCI->getOpcode() == Instruction::SetNE)
|
||||
return SCI->getOperand(1);
|
||||
} else if (SCI->getOpcode() == Instruction::SetEQ) {
|
||||
return SCI->getOperand(1);
|
||||
} else if (SCI->getOpcode() == Instruction::SetEQ) {
|
||||
return SCI->getOperand(1);
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user