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/fastcc-byval.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/fastcc-byval.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/fastcc-byval.ll | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/fastcc-byval.ll b/llvm/test/CodeGen/X86/fastcc-byval.ll index f1204d677a5..08f4564fc69 100644 --- a/llvm/test/CodeGen/X86/fastcc-byval.ll +++ b/llvm/test/CodeGen/X86/fastcc-byval.ll @@ -1,4 +1,7 @@ -; RUN: llc < %s -tailcallopt=false | grep "movl[[:space:]]*8(%esp), %eax" | count 2 +; RUN: llc < %s -tailcallopt=false | FileCheck %s +; CHECK: movl 8(%esp), %eax +; CHECK: movl 8(%esp), %eax + ; PR3122 ; rdar://6400815 |