diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2011-05-05 18:43:39 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2011-05-05 18:43:39 +0000 |
commit | a4982bddf3a1593f73f473878220087c9841efa4 (patch) | |
tree | 49f783a19957d34b43ce42b0f0d2863d5a5a3408 /llvm/lib/MC/MCAsmInfo.cpp | |
parent | b93a130120072c83d0617ade3775500f3240ff5f (diff) | |
download | bcm5719-llvm-a4982bddf3a1593f73f473878220087c9841efa4.tar.gz bcm5719-llvm-a4982bddf3a1593f73f473878220087c9841efa4.zip |
Don't produce a __debug_frame.
I tested both gdb on a bootstrapped clang and and the gdb testsuite on OS X (snow leopard)
and both are happy using __eh_frame.
llvm-svn: 130937
Diffstat (limited to 'llvm/lib/MC/MCAsmInfo.cpp')
-rw-r--r-- | llvm/lib/MC/MCAsmInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCAsmInfo.cpp b/llvm/lib/MC/MCAsmInfo.cpp index c6d6c1b2134..5bb380399f9 100644 --- a/llvm/lib/MC/MCAsmInfo.cpp +++ b/llvm/lib/MC/MCAsmInfo.cpp @@ -74,7 +74,7 @@ MCAsmInfo::MCAsmInfo() { HasLEB128 = false; SupportsDebugInformation = false; ExceptionsType = ExceptionHandling::None; - DwarfRequiresFrameSection = true; + DwarfRequiresFrameSection = false; DwarfUsesInlineInfoSection = false; DwarfRequiresRelocationForStmtList = true; DwarfSectionOffsetDirective = 0; |