summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-09-26 02:41:17 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-09-26 02:41:17 +0000
commitd080f7bf26478d57eb72389efa4915dcb15cc6d6 (patch)
tree982d6e666fa08784538e739a50b54aef679a969c
parent2f5bdcb7c254dace9f73ed536b5e61095a917bde (diff)
downloadbcm5719-llvm-d080f7bf26478d57eb72389efa4915dcb15cc6d6.tar.gz
bcm5719-llvm-d080f7bf26478d57eb72389efa4915dcb15cc6d6.zip
Convert test to filecheck.
llvm-svn: 82835
-rw-r--r--llvm/test/CodeGen/ARM/ldrd.ll14
1 files changed, 11 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/ARM/ldrd.ll b/llvm/test/CodeGen/ARM/ldrd.ll
index 06072a564f6..8f7ae55c6ea 100644
--- a/llvm/test/CodeGen/ARM/ldrd.ll
+++ b/llvm/test/CodeGen/ARM/ldrd.ll
@@ -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
OpenPOWER on IntegriCloud