diff options
author | Jim Laskey <jlaskey@mac.com> | 2007-01-29 20:01:41 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2007-01-29 20:01:41 +0000 |
commit | d683ef6655f255170ac460f20963320a19f6d2cd (patch) | |
tree | 57e8ea065fa8950e1000d5d82450b80cff90172b /lib/CodeGen/DwarfWriter.cpp | |
parent | 7de2e013db45cd610aa0864170df95b1c06e0851 (diff) |
Disable zero landing pads for now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33625 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/DwarfWriter.cpp')
-rw-r--r-- | lib/CodeGen/DwarfWriter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/DwarfWriter.cpp b/lib/CodeGen/DwarfWriter.cpp index c61c8395b7..62d9f7c74f 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 } }; |