Add missing result.SetStatus, to allow aliases to be created with
missing arguments for some of the command options.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@113714 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Interpreter/Args.cpp b/source/Interpreter/Args.cpp
index 059a69a..62a4e1c 100644
--- a/source/Interpreter/Args.cpp
+++ b/source/Interpreter/Args.cpp
@@ -893,6 +893,7 @@
             {
             case no_argument:
                 option_arg_vector->push_back (OptionArgPair (std::string (option_str.GetData()), "<no-argument>"));
+                result.SetStatus (eReturnStatusSuccessFinishNoResult);
                 break;
             case required_argument:
                 if (optarg != NULL)