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

Jim Laskey jlaskey at apple.com
Tue Nov 7 12:53:20 PST 2006



Changes in directory llvm/lib/CodeGen:

MachineDebugInfo.cpp updated: 1.55 -> 1.56
---
Log message:

Missed a label map, reverting till covered.

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

 MachineDebugInfo.cpp |    3 +++
 1 files changed, 3 insertions(+)


Index: llvm/lib/CodeGen/MachineDebugInfo.cpp
diff -u llvm/lib/CodeGen/MachineDebugInfo.cpp:1.55 llvm/lib/CodeGen/MachineDebugInfo.cpp:1.56
--- llvm/lib/CodeGen/MachineDebugInfo.cpp:1.55	Tue Nov  7 13:33:46 2006
+++ llvm/lib/CodeGen/MachineDebugInfo.cpp	Tue Nov  7 14:53:05 2006
@@ -1629,6 +1629,9 @@
 };
 
 bool DebugLabelFolder::runOnMachineFunction(MachineFunction &MF) {
+  // FIXME - Missing label mapping.
+  return false;
+  
   // Get machine debug info.
   MachineDebugInfo *MDI = getAnalysisToUpdate<MachineDebugInfo>();
   if (!MDI) return false;






More information about the llvm-commits mailing list