Make the option parsing of -k & -K match the help strings.

llvm-svn: 222479
This commit is contained in:
Jim Ingham 2014-11-20 23:37:13 +00:00
parent 7b1534e452
commit 661f29dde4
1 changed files with 2 additions and 2 deletions

View File

@ -747,10 +747,10 @@ Driver::ParseArgs (int argc, const char *argv[], FILE *out_fh, bool &exiting)
m_option_data.m_source_quietly = true;
break;
case 'k':
case 'K':
m_option_data.AddInitialCommand(optarg, eCommandPlacementAfterCrash, true, error);
break;
case 'K':
case 'k':
m_option_data.AddInitialCommand(optarg, eCommandPlacementAfterCrash, false, error);
break;