tweak this to test the right thing.
authorChris Lattner <sabre@nondot.org>
Sun, 8 Apr 2007 07:52:40 +0000 (07:52 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 8 Apr 2007 07:52:40 +0000 (07:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35762 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstCombine/apint-xor1.ll

index 116d70e7e62f7fba715b2a2ecf7b2caac4b202cb..35cf6ae8225c1eb79122ed438a2b7ad17c8ed4f5 100644 (file)
@@ -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
 }