diff options
| author | Jason Molenda <jmolenda@apple.com> | 2013-02-04 23:30:05 +0000 |
|---|---|---|
| committer | Jason Molenda <jmolenda@apple.com> | 2013-02-04 23:30:05 +0000 |
| commit | 18257c4106cebf087ef816b18bbf3ecec870f417 (patch) | |
| tree | 73baf930f9acc4250effb9d3aabbc8293fade355 | |
| parent | 3b1b2dabda4128205b090c7c7796017652e27fbb (diff) | |
| download | bcm5719-llvm-18257c4106cebf087ef816b18bbf3ecec870f417.tar.gz bcm5719-llvm-18257c4106cebf087ef816b18bbf3ecec870f417.zip | |
Remove the m_images(NULL) hack in the Target ctor now
that the original issue has been fixed by r174222.
llvm-svn: 174334
| -rw-r--r-- | lldb/source/Target/Target.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lldb/source/Target/Target.cpp b/lldb/source/Target/Target.cpp index 676fe8a8cd4..ef9f469f730 100644 --- a/lldb/source/Target/Target.cpp +++ b/lldb/source/Target/Target.cpp @@ -66,20 +66,7 @@ Target::Target(Debugger &debugger, const ArchSpec &target_arch, const lldb::Plat m_platform_sp (platform_sp), m_mutex (Mutex::eMutexTypeRecursive), m_arch (target_arch), -#ifndef LLDB_DISABLE_PYTHON m_images (this), -#else - // FIXME: The module added notification needed for python scripting support - // causes a problem with in-memory-only Modules at startup if we have - // a breakpoint (the ObjectFile is parsed before we've set the Section load - // addresses leading to an invalid __LINKEDIT section addr on Mac OS X and - // all the problems that will happen from that). - // As a temporary solution for iOS debugging (where all the modules are in-memory-only), - // disable this notification system there. The problem could still happen on - // an x86 system but it is much less common. - // <rdar://problem/12831670> describes the failure mode for on-iOS debugging. - m_images (NULL), -#endif m_section_load_list (), m_breakpoint_list (false), m_internal_breakpoint_list (true), |

