diff options
| author | Kyle Butt <kyle+llvm@iteratee.net> | 2016-08-10 18:36:18 +0000 |
|---|---|---|
| committer | Kyle Butt <kyle+llvm@iteratee.net> | 2016-08-10 18:36:18 +0000 |
| commit | 71b1ca1be4aa0635723a6a00b267fe73ba719d95 (patch) | |
| tree | c659a2a5d6a095291b5940771d49daccbacb50ae /llvm/test/CodeGen/ARM | |
| parent | 7ea9fd233bdccb45f0a43879d5f7d49d972c9a7d (diff) | |
| download | bcm5719-llvm-71b1ca1be4aa0635723a6a00b267fe73ba719d95.tar.gz bcm5719-llvm-71b1ca1be4aa0635723a6a00b267fe73ba719d95.zip | |
Codegen: Tail Merge: Be less aggressive with special cases.
This change makes it possible for tail-duplication and tail-merging to
be disjoint. By being less aggressive when merging during layout, there are no
overlapping cases between tail-duplication and tail-merging, provided the
thresholds are disjoint.
There is a remaining TODO to benchmark the succ_size() test for non-layout tail
merging.
llvm-svn: 278265
Diffstat (limited to 'llvm/test/CodeGen/ARM')
| -rw-r--r-- | llvm/test/CodeGen/ARM/ifcvt4.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/ARM/ifcvt4.ll b/llvm/test/CodeGen/ARM/ifcvt4.ll index 0a6b99fb89b..fe4b675dd07 100644 --- a/llvm/test/CodeGen/ARM/ifcvt4.ll +++ b/llvm/test/CodeGen/ARM/ifcvt4.ll @@ -1,8 +1,8 @@ ; RUN: llc -mtriple=arm-eabi %s -o - | FileCheck %s ; CHECK-LABEL: t: -; CHECK: subgt -; CHECK: suble +; CHECK-DAG: subgt +; CHECK-DAG: suble define i32 @t(i32 %a, i32 %b) { entry: %tmp1434 = icmp eq i32 %a, %b ; <i1> [#uses=1] |

