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/X86 | |
parent | 21e3dfbc86955cf46a362e8ed36b5b73b42961c9 (diff) | |
download | external_llvm-0f7fef3872a37d09c806f52f1d03d74ebc73c171.zip external_llvm-0f7fef3872a37d09c806f52f1d03d74ebc73c171.tar.gz external_llvm-0f7fef3872a37d09c806f52f1d03d74ebc73c171.tar.bz2 |
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/X86')
-rw-r--r-- | lib/Target/X86/X86TargetAsmInfo.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/X86/X86TargetAsmInfo.cpp b/lib/Target/X86/X86TargetAsmInfo.cpp index f1d97a3..5dda5f4 100644 --- a/lib/Target/X86/X86TargetAsmInfo.cpp +++ b/lib/Target/X86/X86TargetAsmInfo.cpp @@ -112,6 +112,8 @@ X86DarwinTargetAsmInfo::X86DarwinTargetAsmInfo(const X86TargetMachine &TM): DwarfFrameSection = ".section __DWARF,__debug_frame,regular,debug"; DwarfPubNamesSection = ".section __DWARF,__debug_pubnames,regular,debug"; DwarfPubTypesSection = ".section __DWARF,__debug_pubtypes,regular,debug"; + DwarfDebugInlineSection = ".section __DWARF,__debug_inlined,regular,debug"; + DwarfUsesInlineInfoSection = true; DwarfStrSection = ".section __DWARF,__debug_str,regular,debug"; DwarfLocSection = ".section __DWARF,__debug_loc,regular,debug"; DwarfARangesSection = ".section __DWARF,__debug_aranges,regular,debug"; |