diff options
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 2 | ||||
-rw-r--r-- | llvm/test/DebugInfo/X86/debug-macinfo-split-dwarf.ll | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 21c6636e94f..fa6800de795 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -1195,7 +1195,7 @@ void DwarfDebug::finalizeModuleInfo() { // If compile Unit has macros, emit "DW_AT_macro_info" attribute. if (CUNode->getMacros()) { if (useSplitDwarf()) - TheCU.addLabelDelta(TheCU.getUnitDie(), dwarf::DW_AT_macro_info, + TheCU.addSectionDelta(TheCU.getUnitDie(), dwarf::DW_AT_macro_info, U.getMacroLabelBegin(), TLOF.getDwarfMacinfoDWOSection()->getBeginSymbol()); else diff --git a/llvm/test/DebugInfo/X86/debug-macinfo-split-dwarf.ll b/llvm/test/DebugInfo/X86/debug-macinfo-split-dwarf.ll index 43255f2c4ce..7e5be6ce4ac 100644 --- a/llvm/test/DebugInfo/X86/debug-macinfo-split-dwarf.ll +++ b/llvm/test/DebugInfo/X86/debug-macinfo-split-dwarf.ll @@ -3,7 +3,7 @@ ; CHECK-LABEL:.debug_info.dwo contents: ; CHECK: DW_AT_GNU_dwo_name [DW_FORM_GNU_str_index] (indexed (00000006) string = "foo.dwo") ; CHECK-NEXT: DW_AT_GNU_dwo_id [DW_FORM_data8] (0xe0f109905cbe1fe4) -; CHECK-NEXT: DW_AT_macro_info [DW_FORM_data4] (0x00000000) +; CHECK-NEXT: DW_AT_macro_info [DW_FORM_sec_offset] (0x00000000) ;CHECK-LABEL:.debug_macinfo.dwo contents: ;CHECK-NEXT: DW_MACINFO_start_file - lineno: 0 filenum: 1 |