diff options
Diffstat (limited to 'lldb/source/Expression/IRForTarget.cpp')
-rw-r--r-- | lldb/source/Expression/IRForTarget.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Expression/IRForTarget.cpp b/lldb/source/Expression/IRForTarget.cpp index 5b189492b85..fbb2eda0240 100644 --- a/lldb/source/Expression/IRForTarget.cpp +++ b/lldb/source/Expression/IRForTarget.cpp @@ -335,6 +335,9 @@ IRForTarget::RewriteObjCSelector(Instruction* selector_load, if (!m_decl_map->GetFunctionAddress (g_sel_registerName_str, srN_addr)) return false; + if (log) + log->Printf("Found sel_registerName at 0x%llx", srN_addr); + // Build the function type: struct objc_selector *sel_registerName(uint8_t*) // The below code would be "more correct," but in actuality what's required is uint8_t* |