summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/apint-xor1.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-04-08 07:52:40 +0000
committerChris Lattner <sabre@nondot.org>2007-04-08 07:52:40 +0000
commit87ff2dd9da34cb8d524d604dbc9fe6a0d99d3ace (patch)
treea98f44a5cf55ef51feca9873e1308be5b6f6d469 /test/Transforms/InstCombine/apint-xor1.ll
parent35921fa54d91dcb7cdc11de2b7a8e4ebe42a8d1d (diff)
downloadllvm-87ff2dd9da34cb8d524d604dbc9fe6a0d99d3ace.tar.gz
llvm-87ff2dd9da34cb8d524d604dbc9fe6a0d99d3ace.tar.bz2
llvm-87ff2dd9da34cb8d524d604dbc9fe6a0d99d3ace.tar.xz
tweak this to test the right thing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35762 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstCombine/apint-xor1.ll')
-rw-r--r--test/Transforms/InstCombine/apint-xor1.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/InstCombine/apint-xor1.ll b/test/Transforms/InstCombine/apint-xor1.ll
index 116d70e7e6..35cf6ae822 100644
--- a/test/Transforms/InstCombine/apint-xor1.ll
+++ b/test/Transforms/InstCombine/apint-xor1.ll
@@ -8,7 +8,7 @@
define i47 @test1(i47 %A, i47 %B) {
;; (A & C1)^(B & C2) -> (A & C1)|(B & C2) iff C1&C2 == 0
%A1 = and i47 %A, 70368744177664
- %B1 = and i47 %B, 70368744177663
+ %B1 = and i47 %B, 70368744177661
%C1 = xor i47 %A1, %B1
ret i47 %C1
}