mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-01 01:14:12 +00:00
IR/GCOV.cpp: Use PRIu64 as format string with uint64_t.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194693 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
12e90cb69a
commit
bdc23320c1
@ -299,7 +299,7 @@ void FileInfo::print(raw_fd_ostream &OS, StringRef gcnoFile,
|
||||
if (L[i] == 0)
|
||||
OS << " #####:";
|
||||
else
|
||||
OS << format("%9lu:", L[i]);
|
||||
OS << format("%9" PRIu64 ":", L[i]);
|
||||
} else {
|
||||
OS << " -:";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user