Disable zero landing pads for now.
authorJim Laskey <jlaskey@mac.com>
Mon, 29 Jan 2007 20:01:41 +0000 (20:01 +0000)
committerJim Laskey <jlaskey@mac.com>
Mon, 29 Jan 2007 20:01:41 +0000 (20:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33625 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/DwarfWriter.cpp

index c61c8395b77cfd41d7c0c43d7303b478bcd5cd0e..62d9f7c74f27f297b76035792cef2e18808cdea4 100644 (file)
@@ -2707,7 +2707,7 @@ public:
   ///
   void EndFunction() {
     if (!ShouldEmitDwarf()) return;
-
+#if 0
     if (const char *GlobalDirective = TAI->getGlobalDirective())
       O << GlobalDirective << getAsm()->CurrentFnName << ".eh\n";
       
@@ -2715,6 +2715,7 @@ public:
     
     if (const char *UsedDirective = TAI->getUsedDirective())
       O << UsedDirective << getAsm()->CurrentFnName << ".eh\n";
+#endif
   }
 };