summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen
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
commit20f25eb958a946231f1b8ae4a0efe5c66b896521 (patch)
treed5f56014819d1edfb950dcb461e0475b12dabb74 /llvm/lib/CodeGen
parentb2f61b4a052cb55428323d422cbc277c7ee228dd (diff)
downloadbcm5719-llvm-20f25eb958a946231f1b8ae4a0efe5c66b896521.tar.gz
bcm5719-llvm-20f25eb958a946231f1b8ae4a0efe5c66b896521.zip
[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 llvm-svn: 189076
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
index 77a3c51169c..30fde54e50e 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+++ b/llvm/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);
}
OpenPOWER on IntegriCloud