Disable zero landing pads for now.

llvm-svn: 33625
This commit is contained in:
Jim Laskey 2007-01-29 20:01:41 +00:00
parent bae85637c7
commit 18c3b5267d
1 changed files with 2 additions and 1 deletions

View File

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