diff options
| author | Ilia K <ki.stfu@gmail.com> | 2015-05-15 09:46:28 +0000 |
|---|---|---|
| committer | Ilia K <ki.stfu@gmail.com> | 2015-05-15 09:46:28 +0000 |
| commit | 27e2c058c91c7be588db67b73473447a1fa4a4b9 (patch) | |
| tree | 03fb96ded373018e167e132e9af7cd73fd7bd515 /lldb/tools/lldb-mi/MICmdCmdStack.h | |
| parent | a3d056fd4cb8d587db98c158e78554620e68df0a (diff) | |
| download | bcm5719-llvm-27e2c058c91c7be588db67b73473447a1fa4a4b9.tar.gz bcm5719-llvm-27e2c058c91c7be588db67b73473447a1fa4a4b9.zip | |
Fix parsing of print-values arg (MI)
# Add CMICmdArgValPrintValues argument
# Rework -stack-list-arguments/-stack-list-locals/-stack-list-variables/-var-update/-var-list-children
commands to use the CMICmdArgValPrintValues argument instead of usage of pair of non-mandatory
arguments like: CMICmdArgValNumber(0) || CMICmdArgValLongOptions("no-values")
llvm-svn: 237429
Diffstat (limited to 'lldb/tools/lldb-mi/MICmdCmdStack.h')
| -rw-r--r-- | lldb/tools/lldb-mi/MICmdCmdStack.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lldb/tools/lldb-mi/MICmdCmdStack.h b/lldb/tools/lldb-mi/MICmdCmdStack.h index f5b02976f3e..ed141fcf942 100644 --- a/lldb/tools/lldb-mi/MICmdCmdStack.h +++ b/lldb/tools/lldb-mi/MICmdCmdStack.h @@ -166,9 +166,6 @@ class CMICmdCmdStackListArguments : public CMICmdBase CMICmnMIValueList m_miValueList; const CMIUtilString m_constStrArgThread; // Not specified in MI spec but Eclipse gives this option const CMIUtilString m_constStrArgPrintValues; - const CMIUtilString m_constStrArgNoValues; - const CMIUtilString m_constStrArgAllValues; - const CMIUtilString m_constStrArgSimpleValues; const CMIUtilString m_constStrArgFrameLow; const CMIUtilString m_constStrArgFrameHigh; }; @@ -207,9 +204,6 @@ class CMICmdCmdStackListLocals : public CMICmdBase const CMIUtilString m_constStrArgThread; // Not specified in MI spec but Eclipse gives this option const CMIUtilString m_constStrArgFrame; // Not specified in MI spec but Eclipse gives this option const CMIUtilString m_constStrArgPrintValues; - const CMIUtilString m_constStrArgNoValues; - const CMIUtilString m_constStrArgAllValues; - const CMIUtilString m_constStrArgSimpleValues; }; //++ ============================================================================ @@ -243,9 +237,6 @@ private: const CMIUtilString m_constStrArgThread; const CMIUtilString m_constStrArgFrame; const CMIUtilString m_constStrArgPrintValues; - const CMIUtilString m_constStrArgNoValues; - const CMIUtilString m_constStrArgAllValues; - const CMIUtilString m_constStrArgSimpleValues; }; //++ ============================================================================ |

