Displaying 4 results from an estimated 4 matches for "r32035".
Did you mean:
32035
2011 Apr 13
4
[LLVMdev] Extra padding on DWARF debug info?
...works around? The
>> workaround was added as part of r103439[1], which added support for
>> multiple compilation units in one module. Does the bug ever affect
>> modules with only a single compilation unit?
>>
>
> It was not added by r103439. In fact, it was added by r32035.
>
> http://llvm.org/viewvc/llvm-project?view=rev&revision=32035
>
> Unfortunately the log message and comments do not provide any hints, and I do not have access to the author anymore.
Sounds like we should rip it out and see if there is any regression on the gdb testsuite.
-C...
2011 Apr 13
0
[LLVMdev] Extra padding on DWARF debug info?
...e bug is in GDB that this works around? The
> workaround was added as part of r103439[1], which added support for
> multiple compilation units in one module. Does the bug ever affect
> modules with only a single compilation unit?
>
It was not added by r103439. In fact, it was added by r32035.
http://llvm.org/viewvc/llvm-project?view=rev&revision=32035
Unfortunately the log message and comments do not provide any hints, and I do not have access to the author anymore.
-
Devang
> -Ken
>
> [1] http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100510/101040....
2011 Apr 13
2
[LLVMdev] Extra padding on DWARF debug info?
DwarfDebug::emitDebugInfo() always appends four zero bytes to the tail
of the debug info section:
emitDIE(Die);
// FIXME - extra padding for gdb bug.
Asm->OutStreamer.AddComment("4 extra padding bytes for GDB");
Asm->EmitInt8(0);
Asm->EmitInt8(0);
Asm->EmitInt8(0);
Asm->EmitInt8(0);
2011 Apr 13
0
[LLVMdev] Extra padding on DWARF debug info?
...t;> workaround was added as part of r103439[1], which added support for
>>> multiple compilation units in one module. Does the bug ever affect
>>> modules with only a single compilation unit?
>>>
>>
>> It was not added by r103439. In fact, it was added by r32035.
>>
>> http://llvm.org/viewvc/llvm-project?view=rev&revision=32035
>>
>> Unfortunately the log message and comments do not provide any hints, and I do not have access to the author anymore.
>
> Sounds like we should rip it out and see if there is any regression...