summaryrefslogtreecommitdiff
path: root/test/CodeGen
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-15 18:32:21 +0000
committerChris Lattner <sabre@nondot.org>2009-08-15 18:32:21 +0000
commit5dafafdeb4d89b37c6b7efbeabaa7d818c7023fe (patch)
tree30f0d5d6a4ac953cef5b24c01edfe524618157d5 /test/CodeGen
parent16b794d25accbc4c5db63bb4d172049f052f0a55 (diff)
downloadllvm-5dafafdeb4d89b37c6b7efbeabaa7d818c7023fe.tar.gz
llvm-5dafafdeb4d89b37c6b7efbeabaa7d818c7023fe.tar.bz2
llvm-5dafafdeb4d89b37c6b7efbeabaa7d818c7023fe.tar.xz
implement support for CHECK-NEXT: in filecheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79123 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r--test/CodeGen/X86/sse2.ll20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/CodeGen/X86/sse2.ll b/test/CodeGen/X86/sse2.ll
index 463df30a6f..da1ec37541 100644
--- a/test/CodeGen/X86/sse2.ll
+++ b/test/CodeGen/X86/sse2.ll
@@ -10,11 +10,11 @@ define void @t1(<2 x double>* %r, <2 x double>* %A, double %B) nounwind {
; CHECK: t1:
; CHECK: movl 8(%esp), %eax
-; CHECK: movapd (%eax), %xmm0
-; CHECK: movlpd 12(%esp), %xmm0
-; CHECK: movl 4(%esp), %eax
-; CHECK: movapd %xmm0, (%eax)
-; CHECK: ret
+; CHECK-NEXT: movapd (%eax), %xmm0
+; CHECK-NEXT: movlpd 12(%esp), %xmm0
+; CHECK-NEXT: movl 4(%esp), %eax
+; CHECK-NEXT: movapd %xmm0, (%eax)
+; CHECK-NEXT: ret
}
define void @t2(<2 x double>* %r, <2 x double>* %A, double %B) nounwind {
@@ -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: movapd (%eax), %xmm0
-; CHECK: movhpd 12(%esp), %xmm0
-; CHECK: movl 4(%esp), %eax
-; CHECK: movapd %xmm0, (%eax)
-; CHECK: ret
+; CHECK-NEXT: movapd (%eax), %xmm0
+; CHECK-NEXT: movhpd 12(%esp), %xmm0
+; CHECK-NEXT: movl 4(%esp), %eax
+; CHECK-NEXT: movapd %xmm0, (%eax)
+; CHECK-NEXT: ret
}