aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2010-12-22 13:36:08 +0000
committerDuncan Sands <baldrick@free.fr>2010-12-22 13:36:08 +0000
commit37bf92b5238434b00fde79347ba5336e7554e562 (patch)
treee0594f4d7ad0969d3807ec13dc85a8b50e0381f8 /test/Transforms/InstCombine
parentfc7072c3c4db03555a0a62220d61a2b85acd01fd (diff)
downloadexternal_llvm-37bf92b5238434b00fde79347ba5336e7554e562.zip
external_llvm-37bf92b5238434b00fde79347ba5336e7554e562.tar.gz
external_llvm-37bf92b5238434b00fde79347ba5336e7554e562.tar.bz2
Add a generic expansion transform: A op (B op' C) -> (A op B) op' (A op C)
if both A op B and A op C simplify. This fires fairly often but doesn't make that much difference. On gcc-as-one-file it removes two "and"s and turns one branch into a select. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122399 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstCombine')
-rw-r--r--test/Transforms/InstCombine/2010-11-23-Distributed.ll16
1 files changed, 14 insertions, 2 deletions
diff --git a/test/Transforms/InstCombine/2010-11-23-Distributed.ll b/test/Transforms/InstCombine/2010-11-23-Distributed.ll
index 13a5720..4f8e8dc 100644
--- a/test/Transforms/InstCombine/2010-11-23-Distributed.ll
+++ b/test/Transforms/InstCombine/2010-11-23-Distributed.ll
@@ -5,7 +5,19 @@ define i32 @foo(i32 %x, i32 %y) {
%mul = mul nsw i32 %add, %y
%square = mul nsw i32 %y, %y
%res = sub i32 %mul, %square
-; CHECK: %res = mul i32 %x, %y
ret i32 %res
-; CHECK: ret i32 %res
+; CHECK-NEXT: mul i32 %x, %y
+; CHECK-NEXT: ret i32
+}
+
+define i1 @bar(i64 %x, i64 %y) {
+; CHECK: @bar
+ %a = and i64 %y, %x
+; CHECK: and
+; CHECK-NOT: and
+ %not = xor i64 %a, -1
+ %b = and i64 %y, %not
+ %r = icmp eq i64 %b, 0
+ ret i1 %r
+; CHECK: ret i1
}