diff options
author | Jason Molenda <jmolenda@apple.com> | 2010-11-04 09:46:43 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2010-11-04 09:46:43 +0000 |
commit | 311eb2deec62985c38fa725af189b52de4910139 (patch) | |
tree | f64abb70de30e421f3bbcf4054dfce8d7411ab2a /lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp | |
parent | dae97b4a297fec9a42fd25032a571a1194dc4a81 (diff) | |
download | bcm5719-llvm-311eb2deec62985c38fa725af189b52de4910139.tar.gz bcm5719-llvm-311eb2deec62985c38fa725af189b52de4910139.zip |
Revert last checking to ThreadGDBRemote.cpp; I accidentally checked
that in along with some cleanup work with the native unwinder code.
llvm-svn: 118242
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp index 7e06e78cfed..d6667340e3e 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp @@ -26,8 +26,6 @@ #include "Utility/StringExtractorGDBRemote.h" #include "UnwindLibUnwind.h" #include "UnwindMacOSXFrameBackchain.h" -#include "UnwindLLDB.h" -#include "RegisterContextLLDB.h" using namespace lldb; using namespace lldb_private; @@ -130,7 +128,7 @@ ThreadGDBRemote::GetUnwinder () const ArchSpec target_arch (GetProcess().GetTarget().GetArchitecture ()); if (target_arch == ArchSpec("x86_64") || target_arch == ArchSpec("i386")) { - m_unwinder_ap.reset (new UnwindLLDB (*this)); + m_unwinder_ap.reset (new UnwindLibUnwind (*this, GetGDBProcess().GetLibUnwindAddressSpace())); } else { |