projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
985792d
)
Fix tests that use the now dead not instruction
author
Chris Lattner
<sabre@nondot.org>
Wed, 14 Aug 2002 19:28:22 +0000
(19:28 +0000)
committer
Chris 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
patch
|
blob
|
history
diff --git
a/test/Transforms/GCSE/gcsetests.ll
b/test/Transforms/GCSE/gcsetests.ll
index 10b00694efafacbdcfc04a9adec72af30f6f1343..9a6f2355427640aae03831ff925c9bc13b735266 100644
(file)
--- 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