diff options
author | Simon Dardis <simon.dardis@imgtec.com> | 2016-09-27 13:15:54 +0000 |
---|---|---|
committer | Simon Dardis <simon.dardis@imgtec.com> | 2016-09-27 13:15:54 +0000 |
commit | d2ed8abb152bf188f20a6beed296bc008a0511c3 (patch) | |
tree | 15d5fe0c6b8791ad74957612bf6de4fccd994ad3 /llvm/test/CodeGen/Mips/tailcall/tail-call-arguments-clobber.ll | |
parent | 912d0394626f2e7a57c1c353370e9f82240f2d6f (diff) | |
download | bcm5719-llvm-d2ed8abb152bf188f20a6beed296bc008a0511c3.tar.gz bcm5719-llvm-d2ed8abb152bf188f20a6beed296bc008a0511c3.zip |
[mips] Disable tail calls temporarily
Disable tail calls while the remaining bugs are fixed. Enable only for tests.
Reviewers: vkalintiris
Differential Review: https://reviews.llvm.org/D24912
llvm-svn: 282487
Diffstat (limited to 'llvm/test/CodeGen/Mips/tailcall/tail-call-arguments-clobber.ll')
-rw-r--r-- | llvm/test/CodeGen/Mips/tailcall/tail-call-arguments-clobber.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/Mips/tailcall/tail-call-arguments-clobber.ll b/llvm/test/CodeGen/Mips/tailcall/tail-call-arguments-clobber.ll index 36691fd7a8d..f47adb6fbb2 100644 --- a/llvm/test/CodeGen/Mips/tailcall/tail-call-arguments-clobber.ll +++ b/llvm/test/CodeGen/Mips/tailcall/tail-call-arguments-clobber.ll @@ -1,9 +1,9 @@ -; RUN: llc -march=mips -mcpu=mips32 -O0 -relocation-model=pic < %s | FileCheck \ +; RUN: llc -march=mips -mcpu=mips32 -O0 -relocation-model=pic -mips-tail-calls=1 < %s | FileCheck \ ; RUN: %s -check-prefix=MIPS32 ; RUN: llc -march=mips64 -mcpu=mips64 -O0 -relocation-model=pic -target-abi n64 \ -; RUN: < %s | FileCheck %s -check-prefix=MIPS64 +; RUN: -mips-tail-calls=1 < %s | FileCheck %s -check-prefix=MIPS64 ; RUN: llc -march=mips64 -mcpu=mips64 -O0 -relocation-model=pic -target-abi n32 \ -; RUN: < %s | FileCheck %s -check-prefix=MIPS64 +; RUN: -mips-tail-calls=1 < %s | FileCheck %s -check-prefix=MIPS64 ; LLVM PR/30197 |