[llvm-commits] [llvm] r82835 - /llvm/trunk/test/CodeGen/ARM/ldrd.ll
Evan Cheng
evan.cheng at apple.com
Fri Sep 25 19:41:34 PDT 2009
Author: evancheng
Date: Fri Sep 25 21:41:17 2009
New Revision: 82835
URL: http://llvm.org/viewvc/llvm-project?rev=82835&view=rev
Log:
Convert test to filecheck.
Modified:
llvm/trunk/test/CodeGen/ARM/ldrd.ll
Modified: llvm/trunk/test/CodeGen/ARM/ldrd.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM/ldrd.ll?rev=82835&r1=82834&r2=82835&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/ARM/ldrd.ll (original)
+++ llvm/trunk/test/CodeGen/ARM/ldrd.ll Fri Sep 25 21:41:17 2009
@@ -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
More information about the llvm-commits
mailing list