mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-29 06:30:39 +00:00
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:
parent
e1d55bb5d5
commit
2b14080035
@ -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…
Reference in New Issue
Block a user