GCOV.cpp: Use PRIu64 instead of %lu.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196882 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
NAKAMURA Takumi 2013-12-10 05:39:40 +00:00
parent e1d55bb5d5
commit 2b14080035

View File

@ -426,7 +426,7 @@ void FileInfo::print(StringRef GCNOFile, StringRef GCDAFile,
if (Block->getCount() == 0)
OS << " $$$$$:";
else
OS << format("%9lu:", Block->getCount());
OS << format("%9" PRIu64 ":", (uint64_t)Block->getCount());
OS << format("%5u-block %u\n", i+1, BlockNo++);
}
}