mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-21 03:05:15 +00:00
GCOV.cpp: Use PRIu64 instead of %lu.
llvm-svn: 196882
This commit is contained in:
parent
3fda77b6c7
commit
79f4804cad
@ -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++);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user