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

Chris Lattner lattner at cs.uiuc.edu
Mon Mar 27 13:36:15 PST 2006



Changes in directory llvm/lib/CodeGen/SelectionDAG:

SelectionDAGISel.cpp updated: 1.207 -> 1.208
---
Log message:

Disable dbg_declare, it currently breaks the CFE build


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

 SelectionDAGISel.cpp |    1 +
 1 files changed, 1 insertion(+)


Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.207 llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.208
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.207	Sun Mar 26 19:32:24 2006
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp	Mon Mar 27 15:36:03 2006
@@ -1382,6 +1382,7 @@
     return 0;
   }
   case Intrinsic::dbg_declare: {
+    return 0;
     MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
     DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
     if (DebugInfo && DebugInfo->Verify(DI.getVariable())) {






More information about the llvm-commits mailing list