projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
31726c1
)
Fix comment.
author
Nick Lewycky
<nicholas@mxc.ca>
Sat, 29 Jan 2011 19:55:23 +0000
(19:55 +0000)
committer
Nick Lewycky
<nicholas@mxc.ca>
Sat, 29 Jan 2011 19:55:23 +0000
(19:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124544
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Analysis/InstructionSimplify.cpp
patch
|
blob
|
history
diff --git
a/lib/Analysis/InstructionSimplify.cpp
b/lib/Analysis/InstructionSimplify.cpp
index c1fa6fcca63ff9baf212cba7021e46b53bbffda6..cf50668cb01a17a3d1af69de2c0e29b8c2e4a895 100644
(file)
--- 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;