[flang-commits] [PATCH] D125129: [flang] Allow implicit declaration of DATA objects in inner procedures
Peter Klausler via Phabricator via flang-commits
flang-commits at lists.llvm.org
Mon May 9 17:49:57 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG3382edf9b96c: [flang] Allow implicit declaration of DATA objects in inner procedures (authored by klausler).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D125129/new/
https://reviews.llvm.org/D125129
Files:
flang/lib/Semantics/resolve-names.cpp
flang/test/Semantics/data16.f90
Index: flang/test/Semantics/data16.f90
===================================================================
--- /dev/null
+++ flang/test/Semantics/data16.f90
@@ -0,0 +1,15 @@
+! RUN: %python %S/test_errors.py %s %flang_fc1
+! Ensure that implicit declarations work in DATA statements
+! appearing in specification parts of inner procedures; they
+! should not elicit diagnostics about initialization of host
+! associated objects.
+program main
+ contains
+ subroutine subr
+ data foo/6.66/ ! implicit declaration of "foo": ok
+ !ERROR: Implicitly typed local entity 'n' not allowed in specification expression
+ real a(n)
+ !ERROR: Host-associated object 'n' must not be initialized in a DATA statement
+ data n/123/
+ end subroutine
+end program
Index: flang/lib/Semantics/resolve-names.cpp
===================================================================
--- flang/lib/Semantics/resolve-names.cpp
+++ flang/lib/Semantics/resolve-names.cpp
@@ -648,7 +648,6 @@
std::optional<SourceName> HadForwardRef(const Symbol &) const;
bool CheckPossibleBadForwardRef(const Symbol &);
- bool inExecutionPart_{false};
bool inSpecificationPart_{false};
bool inEquivalenceStmt_{false};
@@ -3389,7 +3388,7 @@
context().SetError(*resultSymbol);
}},
resultSymbol->details());
- } else if (inExecutionPart_) {
+ } else if (!inSpecificationPart_) {
ObjectEntityDetails entity;
entity.set_funcResult(true);
resultSymbol = &MakeSymbol(effectiveResultName, std::move(entity));
@@ -3422,7 +3421,7 @@
dummy->details());
} else {
dummy = &MakeSymbol(*dummyName, EntityDetails{true});
- if (inExecutionPart_) {
+ if (!inSpecificationPart_) {
ApplyImplicitRules(*dummy);
}
}
@@ -5859,6 +5858,12 @@
}
bool ConstructVisitor::Pre(const parser::DataStmtObject &x) {
+ // Subtle: DATA statements may appear in both the specification and
+ // execution parts, but should be treated as if in the execution part
+ // for purposes of implicit variable declaration vs. host association.
+ // When a name first appears as an object in a DATA statement, it should
+ // be implicitly declared locally as if it had been assigned.
+ auto flagRestorer{common::ScopedSet(inSpecificationPart_, false)};
common::visit(common::visitors{
[&](const Indirection<parser::Variable> &y) {
Walk(y.value());
@@ -6415,7 +6420,7 @@
// be wrong we report an error later in CheckDeclarations().
bool DeclarationVisitor::CheckForHostAssociatedImplicit(
const parser::Name &name) {
- if (inExecutionPart_) {
+ if (!inSpecificationPart_) {
return false;
}
if (name.symbol) {
@@ -7228,9 +7233,7 @@
SetScope(topScope_);
ResolveSpecificationParts(root);
FinishSpecificationParts(root);
- inExecutionPart_ = true;
ResolveExecutionParts(root);
- inExecutionPart_ = false;
ResolveAccParts(context(), x);
ResolveOmpParts(context(), x);
return false;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D125129.428247.patch
Type: text/x-patch
Size: 3057 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/flang-commits/attachments/20220510/4f8bb274/attachment.bin>
More information about the flang-commits
mailing list