diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-10-26 21:26:47 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-10-26 21:26:47 +0000 |
commit | 3fe94f1e9fadde0a72c934eb5fb988be1a9a2ccd (patch) | |
tree | d32c42c9dbd348ff43b879a4ca808cc7758a2814 /llvm/test | |
parent | bb55f6bd23108e657c443a72db201d49e41da997 (diff) | |
download | bcm5719-llvm-3fe94f1e9fadde0a72c934eb5fb988be1a9a2ccd.tar.gz bcm5719-llvm-3fe94f1e9fadde0a72c934eb5fb988be1a9a2ccd.zip |
FileCheck'ize
llvm-svn: 117401
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/CodeGen/ARM/str_pre-2.ll | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/ARM/str_pre-2.ll b/llvm/test/CodeGen/ARM/str_pre-2.ll index 553cd64fce9..4f9ba4db4c2 100644 --- a/llvm/test/CodeGen/ARM/str_pre-2.ll +++ b/llvm/test/CodeGen/ARM/str_pre-2.ll @@ -1,10 +1,11 @@ -; RUN: llc < %s -mtriple=arm-linux-gnu | grep {str.*\\!} -; RUN: llc < %s -mtriple=arm-linux-gnu | grep {ldr.*\\\[.*\], #4} +; RUN: llc < %s -mtriple=arm-linux-gnu | FileCheck %s @b = external global i64* define i64 @t(i64 %a) nounwind readonly { entry: +; CHECK: str lr, [sp, #-4]! +; CHECK: ldr lr, [sp], #4 %0 = load i64** @b, align 4 %1 = load i64* %0, align 4 %2 = mul i64 %1, %a |