aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrzej Warzynski <andrzej.warzynski@arm.com>2021-03-29 11:36:57 +0100
committerAndrzej Warzynski <andrzej.warzynski@arm.com>2021-04-01 14:29:15 +0100
commitdc14e89a1fab6a840c5d8bc3f2bd29f1d1b190be (patch)
treeedf4ea64af5c4d62aabd51f6f65a80c833a40d9a
parent[OpenCL][Docs] Added a label for C++ libs section and example link (diff)
downloadllvm-project-dc14e89a1fab6a840c5d8bc3f2bd29f1d1b190be.tar.gz
llvm-project-dc14e89a1fab6a840c5d8bc3f2bd29f1d1b190be.tar.bz2
llvm-project-dc14e89a1fab6a840c5d8bc3f2bd29f1d1b190be.zip
[flang] Move .f77 to the list of fixed-form file extensions
The free form was introduced in Fortran 90, so treating .f77 as free-form was a bug. Differential Revision: https://reviews.llvm.org/D99494
-rw-r--r--flang/lib/Frontend/FrontendOptions.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/flang/lib/Frontend/FrontendOptions.cpp b/flang/lib/Frontend/FrontendOptions.cpp
index a43cac3bb1cb..2c2f7b84230c 100644
--- a/flang/lib/Frontend/FrontendOptions.cpp
+++ b/flang/lib/Frontend/FrontendOptions.cpp
@@ -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