diff options
Diffstat (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index 9cec1f39906..29ebb694890 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -268,7 +268,10 @@ CommandInterpreter::Initialize () cmd_obj_sp = GetCommandSPExact ("process kill", false); if (cmd_obj_sp) + { AddAlias ("kill", cmd_obj_sp); + AddAlias ("k", cmd_obj_sp); + } cmd_obj_sp = GetCommandSPExact ("process launch", false); if (cmd_obj_sp) |