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/lib/Target | |
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/lib/Target')
-rw-r--r-- | llvm/lib/Target/Mips/MipsSEISelLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Mips/MipsSEISelLowering.cpp b/llvm/lib/Target/Mips/MipsSEISelLowering.cpp index 5964aa7cd1e..ad7014f145f 100644 --- a/llvm/lib/Target/Mips/MipsSEISelLowering.cpp +++ b/llvm/lib/Target/Mips/MipsSEISelLowering.cpp @@ -28,7 +28,7 @@ using namespace llvm; static cl::opt<bool> UseMipsTailCalls("mips-tail-calls", cl::Hidden, - cl::desc("MIPS: permit tail calls."), cl::init(true)); + cl::desc("MIPS: permit tail calls."), cl::init(false)); static cl::opt<bool> NoDPLoadStore("mno-ldc1-sdc1", cl::init(false), cl::desc("Expand double precision loads and " |