[Lldb-commits] [lldb] r261969 - Clear alias argument vector for 'p' alias.
Chaoren Lin via lldb-commits
lldb-commits at lists.llvm.org
Thu Feb 25 19:36:27 PST 2016
Author: chaoren
Date: Thu Feb 25 21:36:27 2016
New Revision: 261969
URL: http://llvm.org/viewvc/llvm-project?rev=261969&view=rev
Log:
Clear alias argument vector for 'p' alias.
Summary: This fixes the 'p' command which should be aliased to 'expresion --'.
Reviewers: jingham
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D17634
Modified:
lldb/trunk/source/Interpreter/CommandInterpreter.cpp
Modified: lldb/trunk/source/Interpreter/CommandInterpreter.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/CommandInterpreter.cpp?rev=261969&r1=261968&r2=261969&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/CommandInterpreter.cpp (original)
+++ lldb/trunk/source/Interpreter/CommandInterpreter.cpp Thu Feb 25 21:36:27 2016
@@ -337,6 +337,8 @@ CommandInterpreter::Initialize ()
AddAlias ("image", cmd_obj_sp);
+ alias_arguments_vector_sp.reset(new OptionArgVector);
+
cmd_obj_sp = GetCommandSPExact ("expression", false);
if (cmd_obj_sp)
{
More information about the lldb-commits
mailing list