We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d19a8f commit 742256dCopy full SHA for 742256d
lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
@@ -416,11 +416,8 @@ void DWARFFormValue::Dump(Stream &s) const {
416
case DW_FORM_ref_addr: {
417
assert(m_unit); // Unit must be valid for DW_FORM_ref_addr objects or we
418
// will get this wrong
419
- if (m_unit->GetVersion() <= 2)
420
- DumpAddress(s.AsRawOstream(), uvalue, sizeof(uint64_t) * 2);
421
- else
422
- DumpAddress(s.AsRawOstream(), uvalue,
423
- m_unit->GetFormParams().getRefAddrByteSize());
+ DumpAddress(s.AsRawOstream(), uvalue,
+ m_unit->GetFormParams().getRefAddrByteSize());
424
break;
425
}
426
case DW_FORM_ref1:
0 commit comments