mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Silence warning
llvm-svn: 35137
This commit is contained in:
parent
5be8544e8a
commit
b34e09291b
@ -2054,8 +2054,8 @@ namespace {
|
||||
case ICmpInst::ICMP_SLT:
|
||||
case ICmpInst::ICMP_ULT:
|
||||
if (Op1->getValue() != 0)
|
||||
NextVal = cast<ConstantInt>(ConstantExpr::getAdd(
|
||||
Op1, ConstantInt::get(Op1->getType(), -1)));
|
||||
NextVal = cast<ConstantInt>(ConstantExpr::getSub(
|
||||
Op1, ConstantInt::get(Op1->getType(), 1)));
|
||||
break;
|
||||
case ICmpInst::ICMP_SGT:
|
||||
case ICmpInst::ICMP_UGT:
|
||||
|
Loading…
Reference in New Issue
Block a user