diff options
author | Andrew Trick <atrick@apple.com> | 2013-02-14 03:00:57 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2013-02-14 03:00:57 +0000 |
commit | 836bf1526b5ab107d4742e51d20a3ede7da89b7d (patch) | |
tree | 5d17e426ff55a9f99c33d6aefd22d29e4338def5 /llvm/test/CodeGen/X86/tailcall-structret.ll | |
parent | 48ab445621077bef077b7392b93c1d7cd5392b62 (diff) | |
download | bcm5719-llvm-836bf1526b5ab107d4742e51d20a3ede7da89b7d.tar.gz bcm5719-llvm-836bf1526b5ab107d4742e51d20a3ede7da89b7d.zip |
Revert "s/grep/FileCheck/ in some tests"
This reverts commit 8b75e6bc35fb3f9c1e788dbd05084c0f4a60a0f3.
The FileCheck tests are not equivalent:
test/CodeGen/X86/tailcall-structret.ll:6:10: error: expected string not found in input
; CHECK: jmp init
^
<stdin>:1:2: note: scanning from here
.section __TEXT,__text,regular,pure_instructions
^
<stdin>:13:2: note: possible intended match here
jmp _init ## TAILCALL
^
llvm-svn: 175124
Diffstat (limited to 'llvm/test/CodeGen/X86/tailcall-structret.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/tailcall-structret.ll | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/tailcall-structret.ll b/llvm/test/CodeGen/X86/tailcall-structret.ll index 1e13f88219d..d8be4b2e2df 100644 --- a/llvm/test/CodeGen/X86/tailcall-structret.ll +++ b/llvm/test/CodeGen/X86/tailcall-structret.ll @@ -1,7 +1,6 @@ -; RUN: llc < %s -march=x86 -tailcallopt | FileCheck %s +; RUN: llc < %s -march=x86 -tailcallopt | grep TAILCALL 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 } |