diff options
author | Eli Bendersky <eliben@google.com> | 2013-04-10 23:30:20 +0000 |
---|---|---|
committer | Eli Bendersky <eliben@google.com> | 2013-04-10 23:30:20 +0000 |
commit | 1dceb3c9a213a1d11059232e49a8ce562022199f (patch) | |
tree | 86189da6725685d8de9ee7a259a4468b8a76ab44 /llvm/test/CodeGen/X86/fastcc3struct.ll | |
parent | 1da4529b15ed80e5d6c0b21d3ac46538fbcad87f (diff) | |
download | bcm5719-llvm-1dceb3c9a213a1d11059232e49a8ce562022199f.tar.gz bcm5719-llvm-1dceb3c9a213a1d11059232e49a8ce562022199f.zip |
Rewrite some of the test/CodeGen/X86 tests to use FileCheck instead of grep
llvm-svn: 179241
Diffstat (limited to 'llvm/test/CodeGen/X86/fastcc3struct.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/fastcc3struct.ll | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/fastcc3struct.ll b/llvm/test/CodeGen/X86/fastcc3struct.ll index 84f8ef6cf36..e2c54ac8a13 100644 --- a/llvm/test/CodeGen/X86/fastcc3struct.ll +++ b/llvm/test/CodeGen/X86/fastcc3struct.ll @@ -1,7 +1,8 @@ ; RUN: llc < %s -march=x86 -o %t -; RUN: grep "movl .48, %ecx" %t -; RUN: grep "movl .24, %edx" %t -; RUN: grep "movl .12, %eax" %t +; RUN: FileCheck %s -input-file %t +; CHECK: movl {{.}}12, %eax +; CHECK: movl {{.}}24, %edx +; CHECK: movl {{.}}48, %ecx %0 = type { i32, i32, i32 } |