summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
diff options
context:
space:
mode:
authorMichael Gottesman <mgottesman@apple.com>2013-08-22 23:45:24 +0000
committerMichael Gottesman <mgottesman@apple.com>2013-08-22 23:45:24 +0000
commit58a9b4388bcace0f332205f960c6c8705fb5a24b (patch)
tree87e5979a9d229f821da08e1bbc9c7ad04eb5e1f7 /lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
parent80075c482c474c39bd06402550211c314c178404 (diff)
downloadllvm-58a9b4388bcace0f332205f960c6c8705fb5a24b.tar.gz
llvm-58a9b4388bcace0f332205f960c6c8705fb5a24b.tar.bz2
llvm-58a9b4388bcace0f332205f960c6c8705fb5a24b.tar.xz
[stack protector] Work around an issue with the BMOVPCB_CALL instruction on ARM by disabling does not return on __stack_chk_fail.
This is to fix the bots while I look to see if there is something I can do here. rdar://14811848 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189076 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
index 77a3c51169..30fde54e50 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
@@ -1809,7 +1809,7 @@ SelectionDAGBuilder::visitSPDescriptorFailure(StackProtectorDescriptor &SPD) {
const TargetLowering *TLI = TM.getTargetLowering();
SDValue Chain = TLI->makeLibCall(DAG, RTLIB::STACKPROTECTOR_CHECK_FAIL,
MVT::isVoid, 0, 0, false, getCurSDLoc(),
- true, false).second;
+ false, false).second;
DAG.setRoot(Chain);
}