@@ -479,19 +479,25 @@ static void printObjectSectionSizes(ObjectFile *Obj) {
479
479
}
480
480
481
481
if (!BerkeleyHeaderPrinted) {
482
- outs () << " text data bss "
483
- << (Radix == octal ? " oct" : " dec" ) << " hex filename\n " ;
482
+ outs () << " text\t "
483
+ " data\t "
484
+ " bss\t "
485
+ " "
486
+ << (Radix == octal ? " oct" : " dec" )
487
+ << " \t "
488
+ " hex\t "
489
+ " filename\n " ;
484
490
BerkeleyHeaderPrinted = true ;
485
491
}
486
492
487
493
// Print result.
488
- fmt << " %#7" << radix_fmt << " "
489
- << " %#7" << radix_fmt << " "
490
- << " %#7" << radix_fmt << " " ;
494
+ fmt << " %#7" << radix_fmt << " \t "
495
+ << " %#7" << radix_fmt << " \t "
496
+ << " %#7" << radix_fmt << " \t " ;
491
497
outs () << format (fmt.str ().c_str (), total_text, total_data, total_bss);
492
498
fmtbuf.clear ();
493
- fmt << " %7" << (Radix == octal ? PRIo64 : PRIu64) << " "
494
- << " %7" PRIx64 " " ;
499
+ fmt << " %7" << (Radix == octal ? PRIo64 : PRIu64) << " \t "
500
+ << " %7" PRIx64 " \t " ;
495
501
outs () << format (fmt.str ().c_str (), total, total);
496
502
}
497
503
}
@@ -839,14 +845,14 @@ static void printBerkelyTotals() {
839
845
std::string fmtbuf;
840
846
raw_string_ostream fmt (fmtbuf);
841
847
const char *radix_fmt = getRadixFmt ();
842
- fmt << " %#7" << radix_fmt << " "
843
- << " %#7" << radix_fmt << " "
844
- << " %#7" << radix_fmt << " " ;
848
+ fmt << " %#7" << radix_fmt << " \t "
849
+ << " %#7" << radix_fmt << " \t "
850
+ << " %#7" << radix_fmt << " \t " ;
845
851
outs () << format (fmt.str ().c_str (), TotalObjectText, TotalObjectData,
846
852
TotalObjectBss);
847
853
fmtbuf.clear ();
848
- fmt << " %7" << (Radix == octal ? PRIo64 : PRIu64) << " "
849
- << " %7" PRIx64 " " ;
854
+ fmt << " %7" << (Radix == octal ? PRIo64 : PRIu64) << " \t "
855
+ << " %7" PRIx64 " \t " ;
850
856
outs () << format (fmt.str ().c_str (), TotalObjectTotal, TotalObjectTotal)
851
857
<< " (TOTALS)\n " ;
852
858
}
0 commit comments