[flang] Add semantic check for named constant as function result
authorPeixin-Qiao <qiaopeixin@huawei.com>
Wed, 1 Jun 2022 06:38:46 +0000 (14:38 +0800)
committerPeixin-Qiao <qiaopeixin@huawei.com>
Wed, 1 Jun 2022 06:38:46 +0000 (14:38 +0800)
Similar to procedure argument, the function result cannot be one
named constant.

Reviewed By: klausler

Differential Revision: https://reviews.llvm.org/D126693

flang/lib/Semantics/check-declarations.cpp
flang/test/Semantics/declarations01.f90 [new file with mode: 0644]

index 6b55954..805d890 100644 (file)
@@ -351,6 +351,10 @@ void CheckHelper::Check(const Symbol &symbol) {
           "A dummy argument may not have the SAVE attribute"_err_en_US);
     }
   } else if (IsFunctionResult(symbol)) {
+    if (IsNamedConstant(symbol)) {
+      messages_.Say(
+          "A function result may not also be a named constant"_err_en_US);
+    }
     if (!symbol.test(Symbol::Flag::InDataStmt) /*caught elsewhere*/ &&
         IsSaved(symbol)) {
       messages_.Say(
diff --git a/flang/test/Semantics/declarations01.f90 b/flang/test/Semantics/declarations01.f90
new file mode 100644 (file)
index 0000000..f3673a7
--- /dev/null
@@ -0,0 +1,8 @@
+! RUN: %python %S/test_errors.py %s %flang_fc1
+! test named constant declarations
+
+function f1() result(x)
+  !ERROR: A function result may not also be a named constant
+  integer, parameter :: x = 1
+end
+