Use %llu to print a 64 bit number. Should fix the ARM bots.

llvm-svn: 186113
This commit is contained in:
Rafael Espindola
2013-07-11 20:01:30 +00:00
parent 4a32bf58d1
commit ed0f6468b8

View File

@@ -330,7 +330,7 @@ doDisplayTable(std::string* ErrMsg) {
printMode(mode & 007);
outs() << ' ' << I->getUser();
outs() << "/" << I->getGroup();
outs() << ' ' << format("%6u", I->getSize());
outs() << ' ' << format("%6llu", I->getSize());
sys::TimeValue ModTime = I->getModTime();
outs() << " " << ModTime.str();
outs() << " " << I->getPath().str() << "\n";