From b89d9a4412ec9d767b4adfc2443d4b41d7297d76 Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Sat, 29 Jan 2011 19:55:23 +0000 Subject: Fix comment. llvm-svn: 124544 --- llvm/lib/Analysis/InstructionSimplify.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib') diff --git a/llvm/lib/Analysis/InstructionSimplify.cpp b/llvm/lib/Analysis/InstructionSimplify.cpp index c1fa6fcca63..cf50668cb01 100644 --- a/llvm/lib/Analysis/InstructionSimplify.cpp +++ b/llvm/lib/Analysis/InstructionSimplify.cpp @@ -710,7 +710,7 @@ static Value *SimplifyMulInst(Value *Op0, Value *Op1, const TargetData *TD, if (match(Op1, m_One())) return Op0; - /// i1 mul -> and. + // i1 mul -> and. if (MaxRecurse && Op0->getType()->isIntegerTy(1)) if (Value *V = SimplifyAndInst(Op0, Op1, TD, DT, MaxRecurse-1)) return V; -- cgit v1.2.3