summaryrefslogtreecommitdiffstats
path: root/test/Transforms
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-08-14 17:44:00 +0000
committerChris Lattner <sabre@nondot.org>2002-08-14 17:44:00 +0000
commit500888b7e8b4ad9901b13f298d0194eafd34b354 (patch)
tree74e75db51df458eb59eb5316f003dbcdc8c1ddad /test/Transforms
parent3a6c063699cf77064f792add9bbee9526dd08717 (diff)
downloadexternal_llvm-500888b7e8b4ad9901b13f298d0194eafd34b354.zip
external_llvm-500888b7e8b4ad9901b13f298d0194eafd34b354.tar.gz
external_llvm-500888b7e8b4ad9901b13f298d0194eafd34b354.tar.bz2
Remove illegal test now that not instruction does not exist.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3312 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms')
-rw-r--r--test/Transforms/InstCombine/or.ll10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/Transforms/InstCombine/or.ll b/test/Transforms/InstCombine/or.ll
index 18881a2..921e5a9 100644
--- a/test/Transforms/InstCombine/or.ll
+++ b/test/Transforms/InstCombine/or.ll
@@ -48,11 +48,6 @@ int "test8"(int %A) {
ret int %B
}
-int %testXOR9(int %A) {
- %B = xor int %A, -1
- ret int %B
-}
-
bool "test9"(bool %A) {
%B = or bool %A, %A
ret bool %B
@@ -63,8 +58,3 @@ int "test10"(int %A) {
ret int %B
}
-bool %test11(bool %A) {
- %B = xor bool %A, true
- ret bool %B
-}
-