Fix buggy testcase
authorChris Lattner <sabre@nondot.org>
Tue, 20 Aug 2002 17:07:02 +0000 (17:07 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 20 Aug 2002 17:07:02 +0000 (17:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3403 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstCombine/not.ll

index 82375bfaf2940d31116f5c45869e2c301c72bde3..870e195add21b3af13a2acfe7f8818f12b208486 100644 (file)
@@ -8,9 +8,9 @@
 
 implementation
 
-int "test1"(int %A) {
-       %B = xor int %A
-       %C = xor int %B
+int %test1(int %A) {
+       %B = xor int %A, -1
+       %C = xor int %B, -1
        ret int %C
 }