summaryrefslogtreecommitdiffstats
path: root/lldb/source/Commands/CommandObjectArgs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/Commands/CommandObjectArgs.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectArgs.cpp14
1 files changed, 5 insertions, 9 deletions
diff --git a/lldb/source/Commands/CommandObjectArgs.cpp b/lldb/source/Commands/CommandObjectArgs.cpp
index f9544e39207..f9d6d02fa02 100644
--- a/lldb/source/Commands/CommandObjectArgs.cpp
+++ b/lldb/source/Commands/CommandObjectArgs.cpp
@@ -77,10 +77,10 @@ CommandObjectArgs::CommandOptions::GetDefinitions ()
}
CommandObjectArgs::CommandObjectArgs (CommandInterpreter &interpreter) :
- CommandObject (interpreter,
- "args",
- "When stopped at the start of a function, reads function arguments of type (u?)int(8|16|32|64)_t, (void|char)*",
- "args"),
+ CommandObjectParsed (interpreter,
+ "args",
+ "When stopped at the start of a function, reads function arguments of type (u?)int(8|16|32|64)_t, (void|char)*",
+ "args"),
m_options (interpreter)
{
}
@@ -96,11 +96,7 @@ CommandObjectArgs::GetOptions ()
}
bool
-CommandObjectArgs::Execute
-(
- Args& args,
- CommandReturnObject &result
-)
+CommandObjectArgs::DoExecute (Args& args, CommandReturnObject &result)
{
ConstString target_triple;
OpenPOWER on IntegriCloud