summaryrefslogtreecommitdiff
path: root/test/Transforms/InstSimplify
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2010-12-21 13:39:20 +0000
committerDuncan Sands <baldrick@free.fr>2010-12-21 13:39:20 +0000
commit9bd2c2e63caf33940c447708aa7078fe7513d86a (patch)
tree38fa08c5b3766ad9a37344e557c8c0f596d80f74 /test/Transforms/InstSimplify
parent3421d908539cc489d2b1dac67d8cbc07160b01db (diff)
downloadllvm-9bd2c2e63caf33940c447708aa7078fe7513d86a.tar.gz
llvm-9bd2c2e63caf33940c447708aa7078fe7513d86a.tar.bz2
llvm-9bd2c2e63caf33940c447708aa7078fe7513d86a.tar.xz
Fix typo in comment, spotted by Deewiant.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122329 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstSimplify')
-rw-r--r--test/Transforms/InstSimplify/2010-12-20-Distribute.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/InstSimplify/2010-12-20-Distribute.ll b/test/Transforms/InstSimplify/2010-12-20-Distribute.ll
index 4625698532..56f7823417 100644
--- a/test/Transforms/InstSimplify/2010-12-20-Distribute.ll
+++ b/test/Transforms/InstSimplify/2010-12-20-Distribute.ll
@@ -2,7 +2,7 @@
define i32 @factorize(i32 %x, i32 %y) {
; CHECK: @factorize
-; (X | 2) & (X | 2) -> X | (1 & 2) -> X
+; (X | 1) & (X | 2) -> X | (1 & 2) -> X
%l = or i32 %x, 1
%r = or i32 %x, 2
%z = and i32 %l, %r