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

Jim Laskey jlaskey at apple.com
Mon Jan 29 12:01:57 PST 2007



Changes in directory llvm/lib/CodeGen:

DwarfWriter.cpp updated: 1.118 -> 1.119
---
Log message:

Disable zero landing pads for now.

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

 DwarfWriter.cpp |    3 ++-
 1 files changed, 2 insertions(+), 1 deletion(-)


Index: llvm/lib/CodeGen/DwarfWriter.cpp
diff -u llvm/lib/CodeGen/DwarfWriter.cpp:1.118 llvm/lib/CodeGen/DwarfWriter.cpp:1.119
--- llvm/lib/CodeGen/DwarfWriter.cpp:1.118	Mon Jan 29 12:51:14 2007
+++ llvm/lib/CodeGen/DwarfWriter.cpp	Mon Jan 29 14:01:41 2007
@@ -2707,7 +2707,7 @@
   ///
   void EndFunction() {
     if (!ShouldEmitDwarf()) return;
-
+#if 0
     if (const char *GlobalDirective = TAI->getGlobalDirective())
       O << GlobalDirective << getAsm()->CurrentFnName << ".eh\n";
       
@@ -2715,6 +2715,7 @@
     
     if (const char *UsedDirective = TAI->getUsedDirective())
       O << UsedDirective << getAsm()->CurrentFnName << ".eh\n";
+#endif
   }
 };
 






More information about the llvm-commits mailing list