From: NAKAMURA Takumi Date: Thu, 14 Nov 2013 11:45:04 +0000 (+0000) Subject: IR/GCOV.cpp: Use PRIu64 as format string with uint64_t. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=bdc23320c10f58f9579a397bd36584dcbd702fae;p=oota-llvm.git 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 --- diff --git a/lib/IR/GCOV.cpp b/lib/IR/GCOV.cpp index eebb20624ae..d1754148847 100644 --- a/lib/IR/GCOV.cpp +++ b/lib/IR/GCOV.cpp @@ -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 << " -:"; }