aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/SystemZ/int-cmp-07.ll
diff options
context:
space:
mode:
authorRichard Sandiford <rsandifo@linux.vnet.ibm.com>2013-08-23 11:27:19 +0000
committerRichard Sandiford <rsandifo@linux.vnet.ibm.com>2013-08-23 11:27:19 +0000
commit35c93e4e42d7a35a90e89211fa62f478e25ba0a4 (patch)
tree639fbed77642a320f45ade7a571b37f1fbdf7b3c /test/CodeGen/SystemZ/int-cmp-07.ll
parent65ddcfa8c1c05aeecd9d4fb062bb121e376aaceb (diff)
downloadexternal_llvm-35c93e4e42d7a35a90e89211fa62f478e25ba0a4.zip
external_llvm-35c93e4e42d7a35a90e89211fa62f478e25ba0a4.tar.gz
external_llvm-35c93e4e42d7a35a90e89211fa62f478e25ba0a4.tar.bz2
[SystemZ] Try reversing comparisons whose first operand is in memory
This allows us to make more use of the many compare reg,mem instructions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189099 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/SystemZ/int-cmp-07.ll')
-rw-r--r--test/CodeGen/SystemZ/int-cmp-07.ll13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/CodeGen/SystemZ/int-cmp-07.ll b/test/CodeGen/SystemZ/int-cmp-07.ll
index 3308cb0..530d178 100644
--- a/test/CodeGen/SystemZ/int-cmp-07.ll
+++ b/test/CodeGen/SystemZ/int-cmp-07.ll
@@ -115,3 +115,16 @@ define double @f8(double %a, double %b, i64 %i1, i64 %base, i64 %index) {
%res = select i1 %cond, double %a, double %b
ret double %res
}
+
+; Check the comparison can be reversed if that allows CG to be used.
+define double @f9(double %a, double %b, i64 %i2, i64 *%ptr) {
+; CHECK-LABEL: f9:
+; CHECK: cg %r2, 0(%r3)
+; CHECK-NEXT: jh {{\.L.*}}
+; CHECK: ldr %f0, %f2
+; CHECK: br %r14
+ %i1 = load i64 *%ptr
+ %cond = icmp slt i64 %i1, %i2
+ %res = select i1 %cond, double %a, double %b
+ ret double %res
+}