diff options
author | Andrew Trick <atrick@apple.com> | 2013-02-14 03:45:08 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2013-02-14 03:45:08 +0000 |
commit | 6871e5f4e527a202b13b051c215ff37f32811e7b (patch) | |
tree | b0a6973f7a377e1916133fe664d8523378930719 /llvm/test/CodeGen/X86/tailcallfp.ll | |
parent | 8868faac14855e0b8eebfabc2665de016c01df5d (diff) | |
download | bcm5719-llvm-6871e5f4e527a202b13b051c215ff37f32811e7b.tar.gz bcm5719-llvm-6871e5f4e527a202b13b051c215ff37f32811e7b.zip |
Reapply "s/grep/FileCheck/ in some tests"
This reverts commit fd1335e982bbf93c5f450ed4fd29f9f787435c85.
Use a triple this time.
llvm-svn: 175134
Diffstat (limited to 'llvm/test/CodeGen/X86/tailcallfp.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/tailcallfp.ll | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/tailcallfp.ll b/llvm/test/CodeGen/X86/tailcallfp.ll index c0b609ac956..22a7930ba87 100644 --- a/llvm/test/CodeGen/X86/tailcallfp.ll +++ b/llvm/test/CodeGen/X86/tailcallfp.ll @@ -1,5 +1,6 @@ -; RUN: llc < %s -march=x86 -x86-asm-syntax=intel -tailcallopt | not grep call +; RUN: llc < %s -march=x86 -tailcallopt | FileCheck %s define fastcc i32 @bar(i32 %X, i32(double, i32) *%FP) { %Y = tail call fastcc i32 %FP(double 0.0, i32 %X) ret i32 %Y +; CHECK: jmpl } |