mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Wrap long line
llvm-svn: 35588
This commit is contained in:
parent
7208dd1001
commit
aaf29d3b5e
@ -4019,8 +4019,7 @@ Instruction *InstCombiner::visitXor(BinaryOperator &I) {
|
||||
// (X + C) ^ signbit -> (X + C + signbit)
|
||||
Constant *C = ConstantInt::get(RHS->getValue() + Op0CI->getValue());
|
||||
return BinaryOperator::createAdd(Op0I->getOperand(0), C);
|
||||
|
||||
|
||||
|
||||
}
|
||||
} else if (Op0I->getOpcode() == Instruction::Or) {
|
||||
// (X|C1)^C2 -> X^(C1|C2) iff X&~C1 == 0
|
||||
@ -6272,7 +6271,8 @@ Instruction *InstCombiner::commonIntCastTransforms(CastInst &CI) {
|
||||
case Instruction::ZExt: {
|
||||
// We need to emit an AND to clear the high bits.
|
||||
assert(SrcBitSize < DestBitSize && "Not a zext?");
|
||||
Constant *C = ConstantInt::get(APInt::getLowBitsSet(DestBitSize, SrcBitSize));
|
||||
Constant *C = ConstantInt::get(APInt::getLowBitsSet(DestBitSize,
|
||||
SrcBitSize));
|
||||
return BinaryOperator::createAnd(Res, C);
|
||||
}
|
||||
case Instruction::SExt:
|
||||
|
Loading…
Reference in New Issue
Block a user