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/tailcall-structret.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/tailcall-structret.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/tailcall-structret.ll | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/tailcall-structret.ll b/llvm/test/CodeGen/X86/tailcall-structret.ll index d8be4b2e2df..dcfefe86704 100644 --- a/llvm/test/CodeGen/X86/tailcall-structret.ll +++ b/llvm/test/CodeGen/X86/tailcall-structret.ll @@ -1,6 +1,7 @@ -; RUN: llc < %s -march=x86 -tailcallopt | grep TAILCALL +; RUN: llc < %s -mtriple=i686-unknown-linux -tailcallopt | FileCheck %s define fastcc { { i8*, i8* }*, i8*} @init({ { i8*, i8* }*, i8*}, i32) { entry: %2 = tail call fastcc { { i8*, i8* }*, i8* } @init({ { i8*, i8*}*, i8*} %0, i32 %1) ret { { i8*, i8* }*, i8*} %2 +; CHECK: jmp init } |