From: Jim Laskey Date: Mon, 29 Jan 2007 20:01:41 +0000 (+0000) Subject: Disable zero landing pads for now. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=d683ef6655f255170ac460f20963320a19f6d2cd;p=oota-llvm.git Disable zero landing pads for now. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33625 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/DwarfWriter.cpp b/lib/CodeGen/DwarfWriter.cpp index c61c8395b77..62d9f7c74f2 100644 --- a/lib/CodeGen/DwarfWriter.cpp +++ b/lib/CodeGen/DwarfWriter.cpp @@ -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 } };