[Lldb-commits] [lldb] r162542 - /lldb/trunk/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
Greg Clayton
gclayton at apple.com
Thu Aug 23 23:43:15 PDT 2012
Author: gclayton
Date: Fri Aug 24 01:43:15 2012
New Revision: 162542
URL: http://llvm.org/viewvc/llvm-project?rev=162542&view=rev
Log:
Remove printf that go left in the code.
Modified:
lldb/trunk/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
Modified: lldb/trunk/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp?rev=162542&r1=162541&r2=162542&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp (original)
+++ lldb/trunk/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp Fri Aug 24 01:43:15 2012
@@ -228,7 +228,6 @@
reg_context_data.GetSize()));
if (data_sp->GetByteSize())
{
- printf("got %zu bytes of reg ctx data\n", data_sp->GetByteSize());
RegisterContextMemory *reg_ctx_memory = new RegisterContextMemory (*thread, 0, *GetDynamicRegisterInfo (), LLDB_INVALID_ADDRESS);
if (reg_ctx_memory)
{
More information about the lldb-commits
mailing list