mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-03 11:24:18 +00:00
llvm-readobj: Fix an unused variable after r241764
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241783 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -597,8 +597,9 @@ void COFFDumper::printCodeViewDebugInfo(const SectionRef &Section) {
|
|||||||
// in the line table. The filename string is accessed using double
|
// in the line table. The filename string is accessed using double
|
||||||
// indirection to the string table subsection using the index subsection.
|
// indirection to the string table subsection using the index subsection.
|
||||||
uint32_t OffsetInIndex = DE.getU32(&Offset),
|
uint32_t OffsetInIndex = DE.getU32(&Offset),
|
||||||
SegmentLength = DE.getU32(&Offset),
|
SegmentLength = DE.getU32(&Offset);
|
||||||
FullSegmentSize = DE.getU32(&Offset);
|
Offset += sizeof(uint32_t); // Skip FullSegmentSize
|
||||||
|
|
||||||
uint32_t FilenameOffset;
|
uint32_t FilenameOffset;
|
||||||
{
|
{
|
||||||
DataExtractor SDE(CVFileIndexToStringOffsetTable, true, 4);
|
DataExtractor SDE(CVFileIndexToStringOffsetTable, true, 4);
|
||||||
|
Reference in New Issue
Block a user