cl::opt<bool>
ELFCommons("common",
cl::desc("Print common symbols in the ELF file. When using "
- "Berkely format, this is added to bss."),
+ "Berkeley format, this is added to bss."),
cl::init(false), cl::cat(SizeCat));
static cl::list<std::string>
outs() << "\n";
}
-static void printBerkelyTotals() {
+static void printBerkeleyTotals() {
std::string fmtbuf;
raw_string_ostream fmt(fmtbuf);
const char *radix_fmt = getRadixFmt();
MoreThanOneFile = InputFilenames.size() > 1;
llvm::for_each(InputFilenames, printFileSectionSizes);
if (OutputFormat == berkeley && TotalSizes)
- printBerkelyTotals();
+ printBerkeleyTotals();
if (HadError)
return 1;