Remove tab, again.
authorNick Lewycky <nicholas@mxc.ca>
Sun, 20 Sep 2009 06:26:34 +0000 (06:26 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Sun, 20 Sep 2009 06:26:34 +0000 (06:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82379 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/ConstantFold.cpp

index 1cf7b290c1e07d3b80e9e459678e162abd2c40be..bfa7832072a61ae29a91167e751ab5a115335d3b 100644 (file)
@@ -712,7 +712,7 @@ Constant *llvm::ConstantFoldBinaryInstruction(LLVMContext &Context,
         case Instruction::FCmp:
           // icmp pred ^ true -> icmp !pred
           assert(CI2->equalsInt(1));
-         CmpInst::Predicate pred = (CmpInst::Predicate)CE1->getPredicate();
+          CmpInst::Predicate pred = (CmpInst::Predicate)CE1->getPredicate();
           pred = CmpInst::getInversePredicate(pred);
           return ConstantExpr::getCompare(pred, CE1->getOperand(0),
                                           CE1->getOperand(1));