diff options
| author | Devang Patel <dpatel@apple.com> | 2009-04-13 17:02:03 +0000 |
|---|---|---|
| committer | Devang Patel <dpatel@apple.com> | 2009-04-13 17:02:03 +0000 |
| commit | 0f7fef3872a37d09c806f52f1d03d74ebc73c171 (patch) | |
| tree | 79bed8c466e81f423ce51b124633991d975c5082 /lib/Target/TargetAsmInfo.cpp | |
| parent | 21e3dfbc86955cf46a362e8ed36b5b73b42961c9 (diff) | |
Reapply 68847.
Now debug_inlined section is covered by TAI->doesDwarfUsesInlineInfoSection(), which is false by default.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68964 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/TargetAsmInfo.cpp')
| -rw-r--r-- | lib/Target/TargetAsmInfo.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/TargetAsmInfo.cpp b/lib/Target/TargetAsmInfo.cpp index 4d9ec334ac..6a2de6f582 100644 --- a/lib/Target/TargetAsmInfo.cpp +++ b/lib/Target/TargetAsmInfo.cpp @@ -101,6 +101,7 @@ void TargetAsmInfo::fillDefaultValues() { SupportsDebugInformation = false; SupportsExceptionHandling = false; DwarfRequiresFrameSection = true; + DwarfUsesInlineInfoSection = false; SupportsMacInfoSection = true; NonLocalEHFrameLabel = false; GlobalEHDirective = 0; @@ -112,6 +113,7 @@ void TargetAsmInfo::fillDefaultValues() { DwarfFrameSection = ".debug_frame"; DwarfPubNamesSection = ".debug_pubnames"; DwarfPubTypesSection = ".debug_pubtypes"; + DwarfDebugInlineSection = ".debug_inlined"; DwarfStrSection = ".debug_str"; DwarfLocSection = ".debug_loc"; DwarfARangesSection = ".debug_aranges"; |
