diff options
-rw-r--r-- | test/Transforms/InstCombine/or.ll | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/Transforms/InstCombine/or.ll b/test/Transforms/InstCombine/or.ll index 18881a2317..921e5a9ef8 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 -} - |