commit | f3da5290282d5a0b98378148e76d60a80944968e | [log] [tgz] |
---|---|---|
author | Benjamin Kramer <benny.kra@googlemail.com> | Sat Nov 05 08:57:40 2011 +0000 |
committer | Benjamin Kramer <benny.kra@googlemail.com> | Sat Nov 05 08:57:40 2011 +0000 |
tree | c5511f1d53d1ae1f12b207ae11ce8a54bb61d4e0 | |
parent | 611cb6445343a27f710100b1d2b11fd375d9e26f [diff] [blame] |
Add more PRI.64 macros for MSVC and use them throughout the codebase. llvm-svn: 143799
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 @@ OS << " "; if (Total.getMemUsed()) - OS << format("%9lld ", (long long)getMemUsed()); + OS << format("%9" PRId64 " ", (int64_t)getMemUsed()); }