diff options
author | Greg Clayton <gclayton@apple.com> | 2011-02-16 00:00:43 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-02-16 00:00:43 +0000 |
commit | bdda58377ffce8dd7cac322d3e8115ccb3a03ee1 (patch) | |
tree | f1885d4a905df68033dac17d46a9d27a93efa7a7 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp | |
parent | c541ade850cef39e4e815618fd205b5feedf7260 (diff) | |
download | bcm5719-llvm-bdda58377ffce8dd7cac322d3e8115ccb3a03ee1.tar.gz bcm5719-llvm-bdda58377ffce8dd7cac322d3e8115ccb3a03ee1.zip |
Fixed an issue where detection of vCont support wasn't being done correctly.
Fixed how the LLDBDisassembler computes and uses a target triple.
llvm-svn: 125617
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp index 1f14a6e9945..e23be430b2e 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp @@ -172,6 +172,8 @@ GDBRemoteCommunication::GetVContSupported (char flavor) if (m_supports_vCont_c == eLazyBoolCalculate) { StringExtractorGDBRemote response; + m_supports_vCont_any = eLazyBoolNo; + m_supports_vCont_all = eLazyBoolNo; m_supports_vCont_c = eLazyBoolNo; m_supports_vCont_C = eLazyBoolNo; m_supports_vCont_s = eLazyBoolNo; |