diff options
author | Greg Clayton <gclayton@apple.com> | 2012-09-20 23:07:44 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2012-09-20 23:07:44 +0000 |
commit | bb011f73f5453a30b92aa313320d44e3ebd40a00 (patch) | |
tree | 2f68fc2016f0455f5cc4997606effbae0bab129e /lldb/source/Expression/ClangExpressionDeclMap.cpp | |
parent | 3a3d529e0dd70d17361dbadad5d6c0d775446a3d (diff) | |
download | bcm5719-llvm-bb011f73f5453a30b92aa313320d44e3ebd40a00.tar.gz bcm5719-llvm-bb011f73f5453a30b92aa313320d44e3ebd40a00.zip |
Show the size of what we are dematerializing in the output log for "lldb expr".
llvm-svn: 164327
Diffstat (limited to 'lldb/source/Expression/ClangExpressionDeclMap.cpp')
-rw-r--r-- | lldb/source/Expression/ClangExpressionDeclMap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Expression/ClangExpressionDeclMap.cpp b/lldb/source/Expression/ClangExpressionDeclMap.cpp index 36865217e16..6e597655ec8 100644 --- a/lldb/source/Expression/ClangExpressionDeclMap.cpp +++ b/lldb/source/Expression/ClangExpressionDeclMap.cpp @@ -1664,7 +1664,7 @@ ClangExpressionDeclMap::DoMaterializeOnePersistentVariable mem = var_sp->m_live_sp->GetValue().GetScalar().ULongLong(); if (log) - log->Printf("Dematerializing %s from 0x%llx", var_sp->GetName().GetCString(), (uint64_t)mem); + log->Printf("Dematerializing %s from 0x%llx (size = %u)", var_sp->GetName().GetCString(), (uint64_t)mem, (unsigned)pvar_byte_size); // Read the contents of the spare memory area |