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 | 18c3b5267d0c77406fd7ec9d8e1d63c2c1363fce (patch) | |
tree | 41200ab9138949160ec33b42eb4a393bff7c4281 /llvm/lib | |
parent | bae85637c75af7e4ee98005af6e8aee081e7c926 (diff) | |
download | bcm5719-llvm-18c3b5267d0c77406fd7ec9d8e1d63c2c1363fce.tar.gz bcm5719-llvm-18c3b5267d0c77406fd7ec9d8e1d63c2c1363fce.zip |
Disable zero landing pads for now.
llvm-svn: 33625
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/DwarfWriter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/DwarfWriter.cpp b/llvm/lib/CodeGen/DwarfWriter.cpp index c61c8395b77..62d9f7c74f2 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 } }; |