1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

GCOV.cpp: Use PRIu64 instead of %lu.

llvm-svn: 196882
This commit is contained in:
NAKAMURA Takumi 2013-12-10 05:39:40 +00:00
parent 3fda77b6c7
commit 79f4804cad

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++);
}
}