Rename -integrated-repl to -deprecated-integrated-repl

Swift SVN r20781
This commit is contained in:
Ben Langmuir
2014-07-30 22:09:37 +00:00
parent fdcee9c501
commit d197964680
7 changed files with 15 additions and 15 deletions

View File

@@ -179,7 +179,8 @@ static bool ParseFrontendArgs(FrontendOptions &Opts, ArgList &Args,
Action = FrontendOptions::DumpAST;
} else if (Opt.matches(OPT_print_ast)) {
Action = FrontendOptions::PrintAST;
} else if (Opt.matches(OPT_repl) || Opt.matches(OPT_integrated_repl)) {
} else if (Opt.matches(OPT_repl) ||
Opt.matches(OPT_deprecated_integrated_repl)) {
Action = FrontendOptions::REPL;
} else if (Opt.matches(OPT_interpret)) {
Action = FrontendOptions::Immediate;