mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-11 05:24:16 +00:00
Minor code cleanups. NFC.
llvm-svn: 265468
This commit is contained in:
parent
da537cb806
commit
c92c4f5e10
@ -2139,7 +2139,7 @@ static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
|
||||
return getTrue(ITy);
|
||||
break;
|
||||
case ICmpInst::ICMP_SGE:
|
||||
/// For signed comparison, the values for an i1 are 0 and -1
|
||||
/// For signed comparison, the values for an i1 are 0 and -1
|
||||
/// respectively. This maps into a truth table of:
|
||||
/// LHS | RHS | LHS >=s RHS | LHS implies RHS
|
||||
/// 0 | 0 | 1 (0 >= 0) | 1
|
||||
@ -2546,7 +2546,7 @@ static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
|
||||
return Pred == ICmpInst::ICMP_NE ?
|
||||
ConstantInt::getTrue(Ctx) : ConstantInt::getFalse(Ctx);
|
||||
}
|
||||
|
||||
|
||||
// Special logic for binary operators.
|
||||
BinaryOperator *LBO = dyn_cast<BinaryOperator>(LHS);
|
||||
BinaryOperator *RBO = dyn_cast<BinaryOperator>(RHS);
|
||||
|
Loading…
Reference in New Issue
Block a user