Remove an early-return from Driver::ParseArgs that

was added as a part of D52604 / r343348.  If the
lldb driver is run without any arguments, .lldbinit 
file reading was not enabled.

<rdar://problem/45570242> 

llvm-svn: 345422
This commit is contained in:
Jason Molenda 2018-10-26 19:40:18 +00:00
parent a89d887084
commit 9fd917ba3d
1 changed files with 0 additions and 4 deletions

View File

@ -578,10 +578,6 @@ SBError Driver::ParseArgs(int argc, const char *argv[], FILE *out_fh,
ResetOptionValues();
// No arguments or just program name, nothing to parse.
if (argc <= 1)
return SBError();
SBError error;
std::vector<option> long_options_vector;
BuildGetOptTable(long_options_vector);