[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

Chris Lattner lattner at cs.uiuc.edu
Fri Mar 10 14:48:31 PST 2006



Changes in directory llvm/lib/CodeGen/SelectionDAG:

SelectionDAGISel.cpp updated: 1.185 -> 1.186
---
Log message:

scrape out bits of llvm-db


---
Diffs of the changes:  (+0 -9)

 SelectionDAGISel.cpp |    9 ---------
 1 files changed, 9 deletions(-)


Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.185 llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.186
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.185	Fri Mar 10 01:49:12 2006
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp	Fri Mar 10 16:48:19 2006
@@ -965,9 +965,6 @@
     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 @@
     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;






More information about the llvm-commits mailing list