Skip to content

Commit

Permalink
[flang][f18] Remove unimplemented options (NFC)
Browse files Browse the repository at this point in the history
These options are in practice passes to the external tool (defined with
F18_FC), i.e. fall into "unrecognised" category. No need to keep them
among other options that are actually parsed.
  • Loading branch information
banach-space committed Nov 5, 2020
1 parent c6a384d commit 93c9413
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions flang/tools/f18/f18.cpp
Expand Up @@ -525,7 +525,6 @@ int main(int argc, char *const argv[]) {
driver.measureTree = true;
} else if (arg == "-fdebug-instrumented-parse") {
options.instrumentedParse = true;
} else if (arg == "-fdebug-semantics") {
} else if (arg == "-fdebug-no-semantics") {
driver.debugNoSemantics = true;
} else if (arg == "-funparse") {
Expand Down Expand Up @@ -565,8 +564,6 @@ int main(int argc, char *const argv[]) {
} else {
driver.F18_FCArgs.push_back("-fdefault-integer-8");
}
} else if (arg == "-Mlargearray") {
} else if (arg == "-Mnolargearray") {
} else if (arg == "-flarge-sizes") {
defaultKinds.set_sizeIntegerKind(8);
} else if (arg == "-fno-large-sizes") {
Expand Down

0 comments on commit 93c9413

Please sign in to comment.