Add "stepi" as an alias for thread step-inst in addition to "si".
Add "nexti" an "ni" as aliases for thread step-inst-over.
git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@142707 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Interpreter/CommandInterpreter.cpp b/source/Interpreter/CommandInterpreter.cpp
index 38c3d7e..edd2bfa 100644
--- a/source/Interpreter/CommandInterpreter.cpp
+++ b/source/Interpreter/CommandInterpreter.cpp
@@ -122,7 +122,17 @@
cmd_obj_sp = GetCommandSPExact ("thread step-inst", false);
if (cmd_obj_sp)
+ {
+ AddAlias ("stepi", cmd_obj_sp);
AddAlias ("si", cmd_obj_sp);
+ }
+
+ cmd_obj_sp = GetCommandSPExact ("thread step-inst-over", false);
+ if (cmd_obj_sp)
+ {
+ AddAlias ("nexti", cmd_obj_sp);
+ AddAlias ("ni", cmd_obj_sp);
+ }
cmd_obj_sp = GetCommandSPExact ("thread step-in", false);
if (cmd_obj_sp)