From 3241dc42bebc6eaf7377f81bbd611a26173c5ed8 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Thu, 14 Nov 2013 11:45:04 +0000 Subject: IR/GCOV.cpp: Use PRIu64 as format string with uint64_t. llvm-svn: 194693 --- llvm/lib/IR/GCOV.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm') diff --git a/llvm/lib/IR/GCOV.cpp b/llvm/lib/IR/GCOV.cpp index eebb20624ae..d1754148847 100644 --- a/llvm/lib/IR/GCOV.cpp +++ b/llvm/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 << " -:"; } -- cgit v1.2.3