Remove tab, again.

llvm-svn: 82379
This commit is contained in:
Nick Lewycky 2009-09-20 06:26:34 +00:00
parent 28260409f2
commit 0f8348e85b
1 changed files with 1 additions and 1 deletions

View 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));