diff options
| author | Greg Clayton <gclayton@apple.com> | 2013-03-09 02:29:04 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2013-03-09 02:29:04 +0000 |
| commit | 5a23444033df846cfe1ad4ba99e44059dce13bb5 (patch) | |
| tree | f2c7d73273e1477bf29f4b85524f5de599ae4ef9 /lldb/source/Plugins/Process/gdb-remote | |
| parent | 0449678bce850df5f232cb092bec39f5ee64465d (diff) | |
| download | bcm5719-llvm-5a23444033df846cfe1ad4ba99e44059dce13bb5.tar.gz bcm5719-llvm-5a23444033df846cfe1ad4ba99e44059dce13bb5.zip | |
Remove my print statements I was using for debugging.
llvm-svn: 176753
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote')
| -rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp index 04285a3ce59..08c9de74b15 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp @@ -922,7 +922,6 @@ GDBRemoteDynamicRegisterInfo::HardcodeARMRegisters(bool from_scratch) { if (strcmp(m_regs[i].name, g_register_infos[i].name)) { - printf ("[%zu] name %s != %s\n", i, m_regs[i].name, g_register_infos[i].name); match = false; break; } @@ -931,7 +930,6 @@ GDBRemoteDynamicRegisterInfo::HardcodeARMRegisters(bool from_scratch) // Make sure all register byte sizes match if (m_regs[i].byte_size != g_register_infos[i].byte_size) { - printf ("[%zu] size %u != %u\n", i, m_regs[i].byte_size, g_register_infos[i].byte_size); match = false; break; } @@ -940,15 +938,8 @@ GDBRemoteDynamicRegisterInfo::HardcodeARMRegisters(bool from_scratch) else { // Wrong number of registers. - printf ("reg count %zu != %u\n", num_dynamic_regs, num_registers); match = false; } - - if (match) - puts("ARM registers match, adding hard coded junk"); - else - puts("ARM registers don't match, not adding junk"); - // If "match" is true, then we can add extra registers. if (match) { |

