commit | 5e4f4a2e1af6715d6d708c25c8cf2a5705c4ef55 | [log] [tgz] |
---|---|---|
author | Greg Clayton <gclayton@apple.com> | Wed Feb 16 00:00:43 2011 +0000 |
committer | Greg Clayton <gclayton@apple.com> | Wed Feb 16 00:00:43 2011 +0000 |
tree | 1cfc80146b39959b7f5846d4f41f809e4627974f | |
parent | e7f8953988d593882971e4134f8423f4af1cffaa [diff] [blame] |
Fixed an issue where detection of vCont support wasn't being done correctly. Fixed how the LLDBDisassembler computes and uses a target triple. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@125617 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp b/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp index 1f14a6e..e23be43 100644 --- a/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp +++ b/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
@@ -172,6 +172,8 @@ 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;