Save the arguments for a process launch in the target.run-args so they can
easily be used in the next run.



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@145051 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectProcess.cpp b/source/Commands/CommandObjectProcess.cpp
index 4e9d499..16f4b9e 100644
--- a/source/Commands/CommandObjectProcess.cpp
+++ b/source/Commands/CommandObjectProcess.cpp
@@ -220,6 +220,9 @@
         }
         else
         {
+            // Save the arguments for subsequent runs in the current target.
+            target->SetRunArguments (launch_args);
+
             m_options.launch_info.GetArguments().AppendArguments (launch_args);
         }