From 18c3b5267d0c77406fd7ec9d8e1d63c2c1363fce Mon Sep 17 00:00:00 2001 From: Jim Laskey Date: Mon, 29 Jan 2007 20:01:41 +0000 Subject: [PATCH] Disable zero landing pads for now. llvm-svn: 33625 --- llvm/lib/CodeGen/DwarfWriter.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llvm/lib/CodeGen/DwarfWriter.cpp b/llvm/lib/CodeGen/DwarfWriter.cpp index c61c8395b77c..62d9f7c74f27 100644 --- a/llvm/lib/CodeGen/DwarfWriter.cpp +++ b/llvm/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 } };