Rename -OFast to -Ofast

Swift SVN r16502
This commit is contained in:
Nadav Rotem
2014-04-18 07:01:17 +00:00
parent 7ea84bbb52
commit ebf73fe8b9
2 changed files with 2 additions and 2 deletions

View File

@@ -685,7 +685,7 @@ static bool ParseSILArgs(SILOptions &Opts, ArgList &Args,
if (A->getOption().matches(OPT_O0)) {
IRGenOpts.OptLevel = 0;
} else if (A->getOption().matches(OPT_OFast)) {
} else if (A->getOption().matches(OPT_Ofast)) {
// Set the maximum optimization level and remove all runtime checks.
IRGenOpts.OptLevel = MaxLevel;
// Unchecked casts.