aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/lsr-reuse.ll
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2010-09-17 22:28:18 +0000
committerEvan Cheng <evan.cheng@apple.com>2010-09-17 22:28:18 +0000
commit6edb0eac87a6e46b89de3ad5d8e39c41969e2a54 (patch)
treecb059ec2c353669ef07a8b6bb55ae6874688bdb5 /test/CodeGen/X86/lsr-reuse.ll
parenta5b1e6810769bef9a1fd98c69877bdfd75d7b106 (diff)
downloadexternal_llvm-6edb0eac87a6e46b89de3ad5d8e39c41969e2a54.zip
external_llvm-6edb0eac87a6e46b89de3ad5d8e39c41969e2a54.tar.gz
external_llvm-6edb0eac87a6e46b89de3ad5d8e39c41969e2a54.tar.bz2
Teach machine sink to
1) Do forward copy propagation. This makes it easier to estimate the cost of the instruction being sunk. 2) Break critical edges on demand, including cases where the value is used by PHI nodes. Critical edge splitting is not yet enabled by default. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114227 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/lsr-reuse.ll')
-rw-r--r--test/CodeGen/X86/lsr-reuse.ll10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/CodeGen/X86/lsr-reuse.ll b/test/CodeGen/X86/lsr-reuse.ll
index d2ff58b..a740514 100644
--- a/test/CodeGen/X86/lsr-reuse.ll
+++ b/test/CodeGen/X86/lsr-reuse.ll
@@ -353,11 +353,11 @@ return:
; CHECK: count_me_3:
; CHECK: call
-; CHECK: movsd (%r15,%r13,8), %xmm0
-; CHECK: mulsd (%r14,%r13,8), %xmm0
-; CHECK: movsd %xmm0, (%r12,%r13,8)
-; CHECK: incq %r13
-; CHECK: cmpq %r13, %rbx
+; CHECK: movsd (%r{{[^,]*}},%r{{[^,]*}},8), %xmm0
+; CHECK: mulsd (%r{{[^,]*}},%r{{[^,]*}},8), %xmm0
+; CHECK: movsd %xmm0, (%r{{[^,]*}},%r{{[^,]*}},8)
+; CHECK: incq %r{{.*}}
+; CHECK: cmpq %r{{.*}}, %r{{.*}}
; CHECK: jne
declare void @use(i64)