aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis/InstructionSimplify.cpp
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2011-01-29 19:55:23 +0000
committerNick Lewycky <nicholas@mxc.ca>2011-01-29 19:55:23 +0000
commit5413880654585f01ea9880f24f07f27c8da56ba8 (patch)
treed51804f392ccdc3124d79097dc37cf8cdc9b98cf /lib/Analysis/InstructionSimplify.cpp
parent31726c154dafa9fef08b1bcac9822c2a4618ec19 (diff)
downloadexternal_llvm-5413880654585f01ea9880f24f07f27c8da56ba8.zip
external_llvm-5413880654585f01ea9880f24f07f27c8da56ba8.tar.gz
external_llvm-5413880654585f01ea9880f24f07f27c8da56ba8.tar.bz2
Fix comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124544 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/InstructionSimplify.cpp')
-rw-r--r--lib/Analysis/InstructionSimplify.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/InstructionSimplify.cpp b/lib/Analysis/InstructionSimplify.cpp
index c1fa6fc..cf50668 100644
--- a/lib/Analysis/InstructionSimplify.cpp
+++ b/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;