diff options
author | Ilia K <ki.stfu@gmail.com> | 2015-02-20 13:07:41 +0000 |
---|---|---|
committer | Ilia K <ki.stfu@gmail.com> | 2015-02-20 13:07:41 +0000 |
commit | c12d88dc8f129e0cf18119c9ba6391e9a82681cc (patch) | |
tree | 7aa7b5ac17f93e40d153c95fca1d287c8acc59d0 /lldb/tools/lldb-mi/MICmdCommands.cpp | |
parent | 7329636d1baa550c3880e7ad7f3d1fde40a351a1 (diff) | |
download | bcm5719-llvm-c12d88dc8f129e0cf18119c9ba6391e9a82681cc.tar.gz bcm5719-llvm-c12d88dc8f129e0cf18119c9ba6391e9a82681cc.zip |
Add -symbol-list-lines command (MI)
Summary:
Add -symbol-list-lines command + test.
All test passed on OS X.
Reviewers: emaste, abidh, clayborg
Reviewed By: clayborg
Subscribers: lldb-commits, clayborg, abidh, emaste
Differential Revision: http://reviews.llvm.org/D7768
llvm-svn: 230008
Diffstat (limited to 'lldb/tools/lldb-mi/MICmdCommands.cpp')
-rw-r--r-- | lldb/tools/lldb-mi/MICmdCommands.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/tools/lldb-mi/MICmdCommands.cpp b/lldb/tools/lldb-mi/MICmdCommands.cpp index b9abfd5068b..a2e10d1a2c4 100644 --- a/lldb/tools/lldb-mi/MICmdCommands.cpp +++ b/lldb/tools/lldb-mi/MICmdCommands.cpp @@ -42,6 +42,7 @@ #include "MICmdCmdStack.h" #include "MICmdCmdSupportInfo.h" #include "MICmdCmdSupportList.h" +#include "MICmdCmdSymbol.h" #include "MICmdCmdTarget.h" #include "MICmdCmdThread.h" #include "MICmdCmdTrace.h" @@ -123,6 +124,7 @@ MICmnCommands::RegisterAll(void) bOk &= Register<CMICmdCmdStackListLocals>(); bOk &= Register<CMICmdCmdStackSelectFrame>(); bOk &= Register<CMICmdCmdSupportListFeatures>(); + bOk &= Register<CMICmdCmdSymbolListLines>(); bOk &= Register<CMICmdCmdTargetSelect>(); bOk &= Register<CMICmdCmdThreadInfo>(); bOk &= Register<CMICmdCmdVarAssign>(); |