projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7de2e01
)
Disable zero landing pads for now.
author
Jim Laskey
<jlaskey@mac.com>
Mon, 29 Jan 2007 20:01:41 +0000
(20:01 +0000)
committer
Jim Laskey
<jlaskey@mac.com>
Mon, 29 Jan 2007 20:01:41 +0000
(20:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33625
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/DwarfWriter.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/DwarfWriter.cpp
b/lib/CodeGen/DwarfWriter.cpp
index c61c8395b77cfd41d7c0c43d7303b478bcd5cd0e..62d9f7c74f27f297b76035792cef2e18808cdea4 100644
(file)
--- 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
}
};