MC: correct DWARF header for PE/COFF assembly input
authorSaleem Abdulrasool <compnerd@compnerd.org>
Thu, 17 Jul 2014 16:27:44 +0000 (16:27 +0000)
committerSaleem Abdulrasool <compnerd@compnerd.org>
Thu, 17 Jul 2014 16:27:44 +0000 (16:27 +0000)
commit7be793b8cd1dea06e13e1c9ba58ea6e8ca91a0cc
tree84ce885108810849cd513199653871ed29aa5a39
parenta056166dc2261d4649c4b159406f5bfd33fb5bb1
MC: correct DWARF header for PE/COFF assembly input

The header contains an offset to the DWARF abbreviations for the CU.  The offset
must be section relative for COFF and absolute for others.  The non-assembly
code path for the DWARF header generation already had the correct emission for
the headers.  This corrects just the assembly path.  Due to the invalid
relocation, processing of the debug information would halt previously on the
first assembly input as the associated abbreviations would be out of range as
they would have the location increased by image base and the section offset.

This address PR20332.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213275 91177308-0d34-0410-b5e6-96231b3b80d8
lib/MC/MCDwarf.cpp
test/DebugInfo/X86/dbg-asm.s [new file with mode: 0644]