diff options
author | Chris Lattner <sabre@nondot.org> | 2002-08-14 19:28:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-08-14 19:28:22 +0000 |
commit | f39c24cbeb920e05455d65432058850acc58df47 (patch) | |
tree | 7509c32e46ec8511a49cf439c014127cd8c9aeab /test/Transforms | |
parent | 985792d87009c31a01d4c3d79e4c499761c74964 (diff) | |
download | external_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.ll | 6 |
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 |