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 | 80be3511edf9ce81d93c0cf5167b666c637a53f3 (patch) | |
| tree | 633d282fc2864ec62dc5a975ed243761b1ea0c6b /llvm/lib/Target/TargetAsmInfo.cpp | |
| parent | 4c7626e7b6824fd088f1ac1a496a13e9d3886089 (diff) | |
| download | bcm5719-llvm-80be3511edf9ce81d93c0cf5167b666c637a53f3.tar.gz bcm5719-llvm-80be3511edf9ce81d93c0cf5167b666c637a53f3.zip | |
Reapply 68847.
Now debug_inlined section is covered by TAI->doesDwarfUsesInlineInfoSection(), which is false by default.
llvm-svn: 68964
Diffstat (limited to 'llvm/lib/Target/TargetAsmInfo.cpp')
| -rw-r--r-- | llvm/lib/Target/TargetAsmInfo.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/TargetAsmInfo.cpp b/llvm/lib/Target/TargetAsmInfo.cpp index 4d9ec334acd..6a2de6f582a 100644 --- a/llvm/lib/Target/TargetAsmInfo.cpp +++ b/llvm/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"; |

