From b13efdafec254746bc83583a10ec3604210d0d35 Mon Sep 17 00:00:00 2001
From: Nick Lewycky <nicholas@mxc.ca>
Date: Sun, 20 Sep 2009 06:27:35 +0000
Subject: Correct the comment; this applies to fcmp too.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82380 91177308-0d34-0410-b5e6-96231b3b80d8
---
 lib/VMCore/ConstantFold.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'lib/VMCore')

diff --git a/lib/VMCore/ConstantFold.cpp b/lib/VMCore/ConstantFold.cpp
index bfa7832..e14dd7e 100644
--- a/lib/VMCore/ConstantFold.cpp
+++ b/lib/VMCore/ConstantFold.cpp
@@ -710,7 +710,7 @@ Constant *llvm::ConstantFoldBinaryInstruction(LLVMContext &Context,
         default: break;
         case Instruction::ICmp:
         case Instruction::FCmp:
-          // icmp pred ^ true -> icmp !pred
+          // cmp pred ^ true -> cmp !pred
           assert(CI2->equalsInt(1));
           CmpInst::Predicate pred = (CmpInst::Predicate)CE1->getPredicate();
           pred = CmpInst::getInversePredicate(pred);
-- 
cgit v1.1