diff options
author | Colin Riley <colin@codeplay.com> | 2015-04-12 22:05:58 +0000 |
---|---|---|
committer | Colin Riley <colin@codeplay.com> | 2015-04-12 22:05:58 +0000 |
commit | 189598ed4c3278291bb7484d075985d935fd454c (patch) | |
tree | 84756058edc4d355b935684a251001da38bac45b /lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime | |
parent | c6de458f7c611ea3af3cc316158ecc12ba0d897a (diff) | |
download | bcm5719-llvm-189598ed4c3278291bb7484d075985d935fd454c.tar.gz bcm5719-llvm-189598ed4c3278291bb7484d075985d935fd454c.zip |
fixing msvc build (format string z is not supported)
llvm-svn: 234708
Diffstat (limited to 'lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime')
-rw-r--r-- | lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp index c06d69fec38..4c406b05bb7 100644 --- a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp +++ b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp @@ -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) |