aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/ConstantFold.cpp
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2009-09-20 06:26:34 +0000
committerNick Lewycky <nicholas@mxc.ca>2009-09-20 06:26:34 +0000
commitdbcffe8712043251db8648cfa350b2f1e09084e9 (patch)
treeab027ace841c5caaba40ce2bdafb46cfd85fc89b /lib/VMCore/ConstantFold.cpp
parentc9c524ea42f9ed437369879c709b95f24bd3a4e8 (diff)
downloadexternal_llvm-dbcffe8712043251db8648cfa350b2f1e09084e9.zip
external_llvm-dbcffe8712043251db8648cfa350b2f1e09084e9.tar.gz
external_llvm-dbcffe8712043251db8648cfa350b2f1e09084e9.tar.bz2
Remove tab, again.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82379 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/ConstantFold.cpp')
-rw-r--r--lib/VMCore/ConstantFold.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/ConstantFold.cpp b/lib/VMCore/ConstantFold.cpp
index 1cf7b29..bfa7832 100644
--- a/lib/VMCore/ConstantFold.cpp
+++ b/lib/VMCore/ConstantFold.cpp
@@ -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));