mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
[SystemZ] Properly check number of operands in getCmpOpsType()
It is needed to check that the number of operands are 2 when finding the case of a logic combination, e.g. 'and' of two compares. Review: Ulrich Weigand llvm-svn: 302022
This commit is contained in:
parent
1f76347a16
commit
1e5bad8632
@ -530,9 +530,10 @@ static Type *getCmpOpsType(const Instruction *I, unsigned VF = 1) {
|
||||
if (CmpInst *CI = dyn_cast<CmpInst>(I->getOperand(0)))
|
||||
OpTy = CI->getOperand(0)->getType();
|
||||
else if (Instruction *LogicI = dyn_cast<Instruction>(I->getOperand(0)))
|
||||
if (CmpInst *CI0 = dyn_cast<CmpInst>(LogicI->getOperand(0)))
|
||||
if (isa<CmpInst>(LogicI->getOperand(1)))
|
||||
OpTy = CI0->getOperand(0)->getType();
|
||||
if (LogicI->getNumOperands() == 2)
|
||||
if (CmpInst *CI0 = dyn_cast<CmpInst>(LogicI->getOperand(0)))
|
||||
if (isa<CmpInst>(LogicI->getOperand(1)))
|
||||
OpTy = CI0->getOperand(0)->getType();
|
||||
|
||||
if (OpTy != nullptr) {
|
||||
if (VF == 1) {
|
||||
|
Loading…
Reference in New Issue
Block a user