From aaf29d3b5e96ec0fcddeb0ed468eec2e892a72ed Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 2 Apr 2007 05:48:58 +0000 Subject: [PATCH] Wrap long line llvm-svn: 35588 --- lib/Transforms/Scalar/InstructionCombining.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 665c4a5930b..246caa25fa1 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -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: