[PATCH] D99494: [flang] Move .f77 to the list of fixed-form file extension
Andrzej Warzynski via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 1 06:30:03 PDT 2021
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGdc14e89a1fab: [flang] Move .f77 to the list of fixed-form file extensions (authored by awarzynski).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D99494/new/
https://reviews.llvm.org/D99494
Files:
flang/lib/Frontend/FrontendOptions.cpp
Index: flang/lib/Frontend/FrontendOptions.cpp
===================================================================
--- flang/lib/Frontend/FrontendOptions.cpp
+++ flang/lib/Frontend/FrontendOptions.cpp
@@ -13,17 +13,17 @@
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
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D99494.334671.patch
Type: text/x-patch
Size: 1472 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210401/7657191f/attachment.bin>
More information about the llvm-commits
mailing list