diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-10 22:48:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-10 22:48:19 +0000 |
commit | 7d74d1145fd17cdc11113755cee2a21f3cb0b7cf (patch) | |
tree | cf58144947c42964f4e6ebce3f804df43d09532c | |
parent | 89b192690ad3c513cfc8f093ca6dcbd59800a971 (diff) |
scrape out bits of llvm-db
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26701 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index fc8e560aaf..96694da971 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -965,9 +965,6 @@ SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) { return 0; case Intrinsic::dbg_stoppoint: { - if (TLI.getTargetMachine().getIntrinsicLowering().EmitDebugFunctions()) - return "llvm_debugger_stop"; - MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo(); if (DebugInfo && DebugInfo->Verify(I.getOperand(4))) { std::vector<SDOperand> Ops; @@ -996,20 +993,14 @@ SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) { return 0; } case Intrinsic::dbg_region_start: - if (TLI.getTargetMachine().getIntrinsicLowering().EmitDebugFunctions()) - return "llvm_dbg_region_start"; if (I.getType() != Type::VoidTy) setValue(&I, DAG.getNode(ISD::UNDEF, TLI.getValueType(I.getType()))); return 0; case Intrinsic::dbg_region_end: - if (TLI.getTargetMachine().getIntrinsicLowering().EmitDebugFunctions()) - return "llvm_dbg_region_end"; if (I.getType() != Type::VoidTy) setValue(&I, DAG.getNode(ISD::UNDEF, TLI.getValueType(I.getType()))); return 0; case Intrinsic::dbg_func_start: - if (TLI.getTargetMachine().getIntrinsicLowering().EmitDebugFunctions()) - return "llvm_dbg_subprogram"; if (I.getType() != Type::VoidTy) setValue(&I, DAG.getNode(ISD::UNDEF, TLI.getValueType(I.getType()))); return 0; |