Index: llvm/trunk/lib/DebugInfo/DWARF/DWARFFormValue.cpp =================================================================== --- llvm/trunk/lib/DebugInfo/DWARF/DWARFFormValue.cpp +++ llvm/trunk/lib/DebugInfo/DWARF/DWARFFormValue.cpp @@ -401,12 +401,14 @@ case DW_FORM_addrx3: case DW_FORM_addrx4: case DW_FORM_GNU_addr_index: { + if (U == nullptr) { + OS << ""; + break; + } Optional A = U->getAddrOffsetSectionItem(UValue); if (!A || DumpOpts.Verbose) AddrOS << format("indexed (%8.8x) address = ", (uint32_t)UValue); - if (U == nullptr) - OS << ""; - else if (A) + if (A) dumpSectionedAddress(AddrOS, DumpOpts, *A); else OS << "";