diff options
author | Michael Liao <michael.liao@intel.com> | 2013-04-29 22:41:29 +0000 |
---|---|---|
committer | Michael Liao <michael.liao@intel.com> | 2013-04-29 22:41:29 +0000 |
commit | c83b3e79fcde070f5d2aafd994160cbcdd5bbe0d (patch) | |
tree | 8c0987fb754bbfe6fb08539e7bf3a5123571f96f /llvm/test/CodeGen/X86/fastcc-byval.ll | |
parent | 03ae57b5afb21f74fe48041f0c735949cad8144c (diff) | |
download | bcm5719-llvm-c83b3e79fcde070f5d2aafd994160cbcdd5bbe0d.tar.gz bcm5719-llvm-c83b3e79fcde070f5d2aafd994160cbcdd5bbe0d.zip |
Rewrite some tests with FileCHeck in X86 codegen
- Revise previous patches of the same purpose by fixing
*) grep <PA> | not grep <PB> semantically is not the same as
CHECK: <PA>{{^<PB>.*$}} as the former will check all occurrences of <PA>
while the later only check the first match. As the result, CHECK needs
putting in all place where <PA> occurs.
*) grep <PA> | count <N> needs a final CHECK-NOT of the same pattern.
(As 'CHECK-<N>' is proposed for discussion, converting 'grep | count <N>'
where N > 1 is postponed.)
llvm-svn: 180742
Diffstat (limited to 'llvm/test/CodeGen/X86/fastcc-byval.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/fastcc-byval.ll | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/fastcc-byval.ll b/llvm/test/CodeGen/X86/fastcc-byval.ll index 08f4564fc69..e6828e42827 100644 --- a/llvm/test/CodeGen/X86/fastcc-byval.ll +++ b/llvm/test/CodeGen/X86/fastcc-byval.ll @@ -1,6 +1,7 @@ ; RUN: llc < %s -tailcallopt=false | FileCheck %s ; CHECK: movl 8(%esp), %eax ; CHECK: movl 8(%esp), %eax +; CHECK-NOT: movl 8(%esp), %eax ; PR3122 ; rdar://6400815 |