diff options
author | Shuxin Yang <shuxin.llvm@gmail.com> | 2012-10-19 23:00:20 +0000 |
---|---|---|
committer | Shuxin Yang <shuxin.llvm@gmail.com> | 2012-10-19 23:00:20 +0000 |
commit | 1479fcdef1de950ea1cd8e930cefc50a670d307a (patch) | |
tree | adefde970251e3bb4204a271b7c83cb75bf87488 /llvm | |
parent | f1f6a72901830a453a9737703ee926cb5f52fb79 (diff) | |
download | bcm5719-llvm-1479fcdef1de950ea1cd8e930cefc50a670d307a.tar.gz bcm5719-llvm-1479fcdef1de950ea1cd8e930cefc50a670d307a.zip |
1. Remove noreturn attribute from __builtin_debugtrap().
(The change at Clang side was committed in r166345)
2. Cosmetic change in order to conform to coding standards.
llvm-svn: 166350
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/Intrinsics.td | 2 | ||||
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/Intrinsics.td b/llvm/include/llvm/Intrinsics.td index cf33a265d6e..2e1597fe6f6 100644 --- a/llvm/include/llvm/Intrinsics.td +++ b/llvm/include/llvm/Intrinsics.td @@ -420,7 +420,7 @@ def int_flt_rounds : Intrinsic<[llvm_i32_ty]>, GCCBuiltin<"__builtin_flt_rounds">; def int_trap : Intrinsic<[], [], [IntrNoReturn]>, GCCBuiltin<"__builtin_trap">; -def int_debugtrap : Intrinsic<[], [], [IntrNoReturn]>, +def int_debugtrap : Intrinsic<[]>, GCCBuiltin<"__builtin_debugtrap">; // NOP: calls/invokes to this intrinsic are removed by codegen diff --git a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp index c46df309356..abf40b77a18 100644 --- a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp @@ -1245,8 +1245,8 @@ void SelectionDAGLegalize::LegalizeOp(SDNode *Node) { if (Action == TargetLowering::Expand) { // replace ISD::DEBUGTRAP with ISD::TRAP SDValue NewVal; - NewVal = DAG.getNode (ISD::TRAP, Node->getDebugLoc(), Node->getVTList(), - Node->getOperand(0)); + NewVal = DAG.getNode(ISD::TRAP, Node->getDebugLoc(), Node->getVTList(), + Node->getOperand(0)); ReplaceNode(Node, NewVal.getNode()); LegalizeOp(NewVal.getNode()); return; |