summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/xor.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-11-04 23:49:53 +0000
committerChris Lattner <sabre@nondot.org>2003-11-04 23:49:53 +0000
commit519c6965f5bfe025634a7859ff8e609ef9836bb0 (patch)
treec525ef6b1c4c1b1f0b356ee2e1221c6d38573923 /test/Transforms/InstCombine/xor.ll
parentd5e4918fa77bf413b020735fa81fc160b43a5d0c (diff)
downloadllvm-519c6965f5bfe025634a7859ff8e609ef9836bb0.tar.gz
llvm-519c6965f5bfe025634a7859ff8e609ef9836bb0.tar.bz2
llvm-519c6965f5bfe025634a7859ff8e609ef9836bb0.tar.xz
Since we're in the neighborhood, test for the inverse
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9710 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstCombine/xor.ll')
-rw-r--r--test/Transforms/InstCombine/xor.ll6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Transforms/InstCombine/xor.ll b/test/Transforms/InstCombine/xor.ll
index 0cbd1320d3..6516a9f0a2 100644
--- a/test/Transforms/InstCombine/xor.ll
+++ b/test/Transforms/InstCombine/xor.ll
@@ -110,3 +110,9 @@ uint %test16(uint %A) { ; ~(X+c) == (-c-1)-X
%C = xor uint %B, 4294967295
ret uint %C
}
+
+uint %test17(uint %A) { ; ~(c-X) == X-(c-1) == X+(-c+1)
+ %B = sub uint 123, %A
+ %C = xor uint %B, 4294967295
+ ret uint %C
+}