summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>2014-03-05 23:48:15 +0000
committerJason Molenda <jmolenda@apple.com>2014-03-05 23:48:15 +0000
commitb509a414f0537b53c2a1e299d938ee064f3aa5ba (patch)
treedd98d7ad56476cf92328b303d1381412bde04995 /lldb/source/Plugins
parent0a69cabd35f18294c75dcf768f7f5442f2f802d7 (diff)
downloadbcm5719-llvm-b509a414f0537b53c2a1e299d938ee064f3aa5ba.tar.gz
bcm5719-llvm-b509a414f0537b53c2a1e299d938ee064f3aa5ba.zip
Add the new JITLoader plugin files to the lldb xcode project file.
Add a cast for a size_t / PRIu64 printf formatter. llvm-svn: 203030
Diffstat (limited to 'lldb/source/Plugins')
-rw-r--r--lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp b/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
index 73ef3151338..a167e21f348 100644
--- a/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
+++ b/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
@@ -190,7 +190,7 @@ JITLoaderGDB::ReadJITDescriptor(bool all_entries)
log->Printf(
"JITLoaderGDB::%s registering JIT entry at 0x%" PRIx64
" (%" PRIu64 " bytes)",
- __FUNCTION__, symbolfile_addr, symbolfile_size);
+ __FUNCTION__, symbolfile_addr, (uint64_t) symbolfile_size);
char jit_name[64];
snprintf(jit_name, 64, "JIT(0x%" PRIx64 ")", symbolfile_addr);
OpenPOWER on IntegriCloud