Added "kill" as an alias for "process kill".


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@157856 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Interpreter/CommandInterpreter.cpp b/source/Interpreter/CommandInterpreter.cpp
index 4f26645..3a5b98e 100644
--- a/source/Interpreter/CommandInterpreter.cpp
+++ b/source/Interpreter/CommandInterpreter.cpp
@@ -240,6 +240,10 @@
         AddOrReplaceAliasOptions ("po", alias_arguments_vector_sp);
     }
     
+    cmd_obj_sp = GetCommandSPExact ("process kill", false);
+    if (cmd_obj_sp)
+        AddAlias ("kill", cmd_obj_sp);
+    
     cmd_obj_sp = GetCommandSPExact ("process launch", false);
     if (cmd_obj_sp)
     {