summaryrefslogtreecommitdiffstats
path: root/test/Transforms
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-08-14 19:28:22 +0000
committerChris Lattner <sabre@nondot.org>2002-08-14 19:28:22 +0000
commitf39c24cbeb920e05455d65432058850acc58df47 (patch)
tree7509c32e46ec8511a49cf439c014127cd8c9aeab /test/Transforms
parent985792d87009c31a01d4c3d79e4c499761c74964 (diff)
downloadexternal_llvm-f39c24cbeb920e05455d65432058850acc58df47.zip
external_llvm-f39c24cbeb920e05455d65432058850acc58df47.tar.gz
external_llvm-f39c24cbeb920e05455d65432058850acc58df47.tar.bz2
Fix tests that use the now dead not instruction
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3331 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms')
-rw-r--r--test/Transforms/GCSE/gcsetests.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Transforms/GCSE/gcsetests.ll b/test/Transforms/GCSE/gcsetests.ll
index 10b0069..9a6f235 100644
--- a/test/Transforms/GCSE/gcsetests.ll
+++ b/test/Transforms/GCSE/gcsetests.ll
@@ -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