@@ -314,9 +314,10 @@ void CIE::dump(raw_ostream &OS, const MCRegisterInfo *MRI, bool IsEH) const {
314
314
<< format (" %0*" PRIx64, IsDWARF64 ? 16 : 8 , Length)
315
315
<< format (" %0*" PRIx64, IsDWARF64 && !IsEH ? 16 : 8 ,
316
316
getCIEId (IsDWARF64, IsEH))
317
- << " CIE\n " ;
318
- OS << format (" Version: %d\n " , Version);
319
- OS << " Augmentation: \" " << Augmentation << " \"\n " ;
317
+ << " CIE\n "
318
+ << " Format: " << FormatString (IsDWARF64) << " \n "
319
+ << format (" Version: %d\n " , Version)
320
+ << " Augmentation: \" " << Augmentation << " \"\n " ;
320
321
if (Version >= 4 ) {
321
322
OS << format (" Address size: %u\n " , (uint32_t )AddressSize);
322
323
OS << format (" Segment desc size: %u\n " ,
@@ -349,6 +350,7 @@ void FDE::dump(raw_ostream &OS, const MCRegisterInfo *MRI, bool IsEH) const {
349
350
OS << " <invalid offset>" ;
350
351
OS << format (" pc=%08" PRIx64 " ...%08" PRIx64 " \n " , InitialLocation,
351
352
InitialLocation + AddressRange);
353
+ OS << " Format: " << FormatString (IsDWARF64) << " \n " ;
352
354
if (LSDAAddress)
353
355
OS << format (" LSDA Address: %016" PRIx64 " \n " , *LSDAAddress);
354
356
CFIs.dump (OS, MRI, IsEH);
0 commit comments