Skip to content

Commit

Permalink
[flang] Move .f77 to the list of fixed-form file extensions
Browse files Browse the repository at this point in the history
The free form was introduced in Fortran 90, so treating .f77 as
free-form was a bug.

Differential Revision: https://reviews.llvm.org/D99494
  • Loading branch information
banach-space committed Apr 1, 2021
1 parent 7c541a1 commit dc14e89
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions flang/lib/Frontend/FrontendOptions.cpp
Expand Up @@ -13,17 +13,17 @@ using namespace Fortran::frontend;

bool Fortran::frontend::isFixedFormSuffix(llvm::StringRef suffix) {
// Note: Keep this list in-sync with flang/test/lit.cfg.py
return suffix == "f" || suffix == "F" || suffix == "ff" || suffix == "for" ||
suffix == "FOR" || suffix == "fpp" || suffix == "FPP";
return suffix == "f77" || suffix == "f" || suffix == "F" || suffix == "ff" ||
suffix == "for" || suffix == "FOR" || suffix == "fpp" || suffix == "FPP";
}

bool Fortran::frontend::isFreeFormSuffix(llvm::StringRef suffix) {
// Note: Keep this list in-sync with flang/test/lit.cfg.py
// TODO: Add Cuda Fortan files (i.e. `*.cuf` and `*.CUF`).
return suffix == "f77" || suffix == "f90" || suffix == "F90" ||
suffix == "ff90" || suffix == "f95" || suffix == "F95" ||
suffix == "ff95" || suffix == "f03" || suffix == "F03" ||
suffix == "f08" || suffix == "F08" || suffix == "f18" || suffix == "F18";
return suffix == "f90" || suffix == "F90" || suffix == "ff90" ||
suffix == "f95" || suffix == "F95" || suffix == "ff95" ||
suffix == "f03" || suffix == "F03" || suffix == "f08" ||
suffix == "F08" || suffix == "f18" || suffix == "F18";
}

// TODO: This is a copy of `asFortran` from f18.cpp and is added here for
Expand Down

0 comments on commit dc14e89

Please sign in to comment.