Fix tests that use the now dead not instruction
authorChris Lattner <sabre@nondot.org>
Wed, 14 Aug 2002 19:28:22 +0000 (19:28 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 14 Aug 2002 19:28:22 +0000 (19:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3331 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/GCSE/gcsetests.ll

index 10b00694efafacbdcfc04a9adec72af30f6f1343..9a6f2355427640aae03831ff925c9bc13b735266 100644 (file)
@@ -25,9 +25,9 @@ begin
        %A = add int %i, %j
        %B = add int %i, %j
 
-       %C = not int %A
-       %D = not int %B
-       %E = not int %j
+       %C = xor int %A, -1
+       %D = xor int %B, -1
+       %E = xor int %j, -1
 
        ret void
 end