diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-11-05 08:57:40 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-11-05 08:57:40 +0000 |
commit | f3da5290282d5a0b98378148e76d60a80944968e (patch) | |
tree | c5511f1d53d1ae1f12b207ae11ce8a54bb61d4e0 /llvm/lib/Support/Timer.cpp | |
parent | 611cb6445343a27f710100b1d2b11fd375d9e26f (diff) | |
download | llvm-f3da5290282d5a0b98378148e76d60a80944968e.zip llvm-f3da5290282d5a0b98378148e76d60a80944968e.tar.gz llvm-f3da5290282d5a0b98378148e76d60a80944968e.tar.bz2 |
Add more PRI.64 macros for MSVC and use them throughout the codebase.
llvm-svn: 143799
Diffstat (limited to 'llvm/lib/Support/Timer.cpp')
-rw-r--r-- | llvm/lib/Support/Timer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/Timer.cpp b/llvm/lib/Support/Timer.cpp index 03ac963..598e8ad 100644 --- a/llvm/lib/Support/Timer.cpp +++ b/llvm/lib/Support/Timer.cpp @@ -184,7 +184,7 @@ void TimeRecord::print(const TimeRecord &Total, raw_ostream &OS) const { OS << " "; if (Total.getMemUsed()) - OS << format("%9lld ", (long long)getMemUsed()); + OS << format("%9" PRId64 " ", (int64_t)getMemUsed()); } |