mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 00:31:49 +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:
parent
2efb9f7c3e
commit
e1ef0c07e9
@ -597,8 +597,9 @@ void COFFDumper::printCodeViewDebugInfo(const SectionRef &Section) {
|
||||
// in the line table. The filename string is accessed using double
|
||||
// indirection to the string table subsection using the index subsection.
|
||||
uint32_t OffsetInIndex = DE.getU32(&Offset),
|
||||
SegmentLength = DE.getU32(&Offset),
|
||||
FullSegmentSize = DE.getU32(&Offset);
|
||||
SegmentLength = DE.getU32(&Offset);
|
||||
Offset += sizeof(uint32_t); // Skip FullSegmentSize
|
||||
|
||||
uint32_t FilenameOffset;
|
||||
{
|
||||
DataExtractor SDE(CVFileIndexToStringOffsetTable, true, 4);
|
||||
|
Loading…
x
Reference in New Issue
Block a user