summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/InstSimplify
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2017-04-06 05:48:06 +0000
committerCraig Topper <craig.topper@gmail.com>2017-04-06 05:48:06 +0000
commitf7298b0ef034feea0a69e0a9b975913d9e2a39d7 (patch)
treea0705039ce9d9765be5532304692219b3bbdef84 /llvm/test/Transforms/InstSimplify
parentaa5f524095772f54ff83e34634a966ebd74b4f13 (diff)
downloadbcm5719-llvm-f7298b0ef034feea0a69e0a9b975913d9e2a39d7.tar.gz
bcm5719-llvm-f7298b0ef034feea0a69e0a9b975913d9e2a39d7.zip
[InstSimplify] Add test cases for mixing add/sub i1 with xor of i1. Seems we can simplify in one direction but not the other.
llvm-svn: 299627
Diffstat (limited to 'llvm/test/Transforms/InstSimplify')
-rw-r--r--llvm/test/Transforms/InstSimplify/addsub.ll42
1 files changed, 42 insertions, 0 deletions
diff --git a/llvm/test/Transforms/InstSimplify/addsub.ll b/llvm/test/Transforms/InstSimplify/addsub.ll
index 5ba13477b20..2f19a4d205e 100644
--- a/llvm/test/Transforms/InstSimplify/addsub.ll
+++ b/llvm/test/Transforms/InstSimplify/addsub.ll
@@ -34,3 +34,45 @@ define <2 x i1> @test6(<2 x i1> %a) {
%res = add <2 x i1> %a, %a
ret <2 x i1> %res
}
+
+define i1 @test7(i1 %a) {
+; CHECK-LABEL: @test7(
+; CHECK-NEXT: ret i1 [[A:%.*]]
+;
+ %c = xor i1 %a, true
+ %res = add i1 %c, true
+ ret i1 %res
+}
+
+; TODO: simplify this to %a
+define i1 @test8(i1 %a) {
+; CHECK-LABEL: @test8(
+; CHECK-NEXT: [[C:%.*]] = add i1 [[A:%.*]], true
+; CHECK-NEXT: [[RES:%.*]] = xor i1 [[C]], true
+; CHECK-NEXT: ret i1 [[RES]]
+;
+ %c = add i1 %a, true
+ %res = xor i1 %c, true
+ ret i1 %res
+}
+
+define i1 @test9(i1 %a) {
+; CHECK-LABEL: @test9(
+; CHECK-NEXT: ret i1 [[A:%.*]]
+;
+ %c = xor i1 %a, true
+ %res = sub i1 %c, true
+ ret i1 %res
+}
+
+; TODO: simplify this to %a
+define i1 @test10(i1 %a) {
+; CHECK-LABEL: @test10(
+; CHECK-NEXT: [[C:%.*]] = sub i1 [[A:%.*]], true
+; CHECK-NEXT: [[RES:%.*]] = xor i1 [[C]], true
+; CHECK-NEXT: ret i1 [[RES]]
+;
+ %c = sub i1 %a, true
+ %res = xor i1 %c, true
+ ret i1 %res
+}
OpenPOWER on IntegriCloud