diff options
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 } |