diff options
author | Chris Lattner <sabre@nondot.org> | 2008-01-15 21:58:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-01-15 21:58:08 +0000 |
commit | 41bab0beac2600701af99f63e23a6b65f71468ac (patch) | |
tree | e40e0e5845cec357f3c67ef75f311e37d52e04ff /lib/CodeGen/SelectionDAG/TargetLowering.cpp | |
parent | 9a79de3d091978cfee5264ee2563fc5dedd33cb7 (diff) |
Add support for targets that have a legal ISD::TRAP.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46014 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/TargetLowering.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/lib/CodeGen/SelectionDAG/TargetLowering.cpp index ac2ce8a86b..cb12b7c732 100644 --- a/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -175,6 +175,9 @@ TargetLowering::TargetLowering(TargetMachine &tm) setOperationAction(ISD::FGETSIGN, (MVT::ValueType)VT, Expand); } + // Default ISD::TRAP to expand (which turns it into abort). + setOperationAction(ISD::TRAP, MVT::Other, Expand); + IsLittleEndian = TD->isLittleEndian(); UsesGlobalOffsetTable = false; ShiftAmountTy = SetCCResultTy = PointerTy = getValueType(TD->getIntPtrType()); |