OSDN Git Service

Convert test to filecheck.
authorEvan Cheng <evan.cheng@apple.com>
Sat, 26 Sep 2009 02:41:17 +0000 (02:41 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Sat, 26 Sep 2009 02:41:17 +0000 (02:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82835 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/ARM/ldrd.ll

index 06072a5..8f7ae55 100644 (file)
@@ -1,12 +1,20 @@
-; RUN: llc < %s -mtriple=armv6-apple-darwin | grep ldrd
-; RUN: llc < %s -mtriple=armv5-apple-darwin | not grep ldrd
-; RUN: llc < %s -mtriple=armv6-eabi | not grep ldrd
+; RUN: llc < %s -mtriple=armv6-apple-darwin | FileCheck %s -check-prefix=V6
+; RUN: llc < %s -mtriple=armv5-apple-darwin | FileCheck %s -check-prefix=V5
+; RUN: llc < %s -mtriple=armv6-eabi | FileCheck %s -check-prefix=EABI
 ; rdar://r6949835
 
 @b = external global i64*
 
 define i64 @t(i64 %a) nounwind readonly {
 entry:
+;V6:      ldrd r2, [r2]
+
+;V5:      ldr r3, [r2]
+;V5-NEXT: ldr r2, [r2, #+4]
+
+;EABI:      ldr r3, [r2]
+;EABI-NEXT: ldr r2, [r2, #+4]
+
        %0 = load i64** @b, align 4
        %1 = load i64* %0, align 4
        %2 = mul i64 %1, %a