search for: dwarfdebuglocsectionsym

Displaying 2 results from an estimated 2 matches for "dwarfdebuglocsectionsym".

2012 Nov 19
0
[LLVMdev] Debug information under windows
...uot;section_line")); + } else NewCU->addUInt(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4, 0); @@ -1638,7 +1643,7 @@ } case dwarf::DW_AT_location: { if (DIELabel *L = dyn_cast<DIELabel>(Values[i])) - Asm->EmitLabelDifference(L->getValue(), DwarfDebugLocSectionSym, 4); + Asm->EmitSectionOffset(L->getValue(), DwarfDebugLocSectionSym); else Values[i]->EmitValue(Asm, Form); break; diff -r 547972237a05 -r d28fa29d4b44 lib/MC/MCAsmInfoCOFF.cpp --- a/lib/MC/MCAsmInfoCOFF.cpp Wed Oct 10 20:39:45 2012 +0200 +++ b/lib/MC/MCAsmIn...
2012 Oct 26
5
[LLVMdev] Debug information under windows
Hello, Recently I found binaries produced with LLVM impossible to debug under Windows. This was probably related to the following bug: http://llvm.org/bugs/show_bug.cgi?id=13636 Asm generated from .ll files revealed that some offsets to debug information were incorrect: they were absolute instead of relative to their sections. Following patch seemed to have repaired the problem, so I'm