diff options
author | David Goodwin <david_goodwin@apple.com> | 2009-10-22 23:19:17 +0000 |
---|---|---|
committer | David Goodwin <david_goodwin@apple.com> | 2009-10-22 23:19:17 +0000 |
commit | 02ad4cb32e5aefaf20d2f9a7794e7bd2e768b08b (patch) | |
tree | 83bfeb76baa03f60e20e611bf9cc8a4cb641bc35 /llvm/test/CodeGen/X86/sse2.ll | |
parent | ffba662dd275d1bdd5a5935f4d3cc372b5235d07 (diff) | |
download | bcm5719-llvm-02ad4cb32e5aefaf20d2f9a7794e7bd2e768b08b.tar.gz bcm5719-llvm-02ad4cb32e5aefaf20d2f9a7794e7bd2e768b08b.zip |
Allow the target to select the level of anti-dependence breaking that should be performed by the post-RA scheduler. The default is none.
llvm-svn: 84911
Diffstat (limited to 'llvm/test/CodeGen/X86/sse2.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/sse2.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/X86/sse2.ll b/llvm/test/CodeGen/X86/sse2.ll index 58fe28b09fe..a3faada6615 100644 --- a/llvm/test/CodeGen/X86/sse2.ll +++ b/llvm/test/CodeGen/X86/sse2.ll @@ -10,10 +10,10 @@ define void @t1(<2 x double>* %r, <2 x double>* %A, double %B) nounwind { ; CHECK: t1: ; CHECK: movl 8(%esp), %eax -; CHECK-NEXT: movl 4(%esp), %ecx ; CHECK-NEXT: movapd (%eax), %xmm0 +; CHECK-NEXT: movl 4(%esp), %eax ; CHECK-NEXT: movlpd 12(%esp), %xmm0 -; CHECK-NEXT: movapd %xmm0, (%ecx) +; CHECK-NEXT: movapd %xmm0, (%eax) ; CHECK-NEXT: ret } @@ -26,9 +26,9 @@ define void @t2(<2 x double>* %r, <2 x double>* %A, double %B) nounwind { ; CHECK: t2: ; CHECK: movl 8(%esp), %eax -; CHECK-NEXT: movl 4(%esp), %ecx ; CHECK-NEXT: movapd (%eax), %xmm0 +; CHECK-NEXT: movl 4(%esp), %eax ; CHECK-NEXT: movhpd 12(%esp), %xmm0 -; CHECK-NEXT: movapd %xmm0, (%ecx) +; CHECK-NEXT: movapd %xmm0, (%eax) ; CHECK-NEXT: ret } |