fixing msvc build (format string z is not supported)

llvm-svn: 234708
This commit is contained in:
Colin Riley 2015-04-12 22:05:58 +00:00
parent c6de458f7c
commit 189598ed4c
1 changed files with 2 additions and 2 deletions

View File

@ -221,7 +221,7 @@ RSModuleDescriptor::Dump(Stream &strm) const
strm.EOL();
strm.IndentMore();
strm.Indent();
strm.Printf("Globals: %zu", m_globals.size());
strm.Printf("Globals: %" PRIu64, static_cast<uint64_t>(m_globals.size()));
strm.EOL();
strm.IndentMore();
for (const auto &global : m_globals)
@ -230,7 +230,7 @@ RSModuleDescriptor::Dump(Stream &strm) const
}
strm.IndentLess();
strm.Indent();
strm.Printf("Kernels: %zu", m_kernels.size());
strm.Printf("Kernels: %" PRIu64, static_cast<uint64_t>(m_kernels.size()));
strm.EOL();
strm.IndentMore();
for (const auto &kernel : m_kernels)