[flang-commits] [PATCH] D135207: [flang] Ensure USE associations of shadowed procedures are emitted to module files
Peter Klausler via Phabricator via flang-commits
flang-commits at lists.llvm.org
Thu Oct 6 11:27:14 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG3411263dde4f: [flang] Ensure USE associations of shadowed procedures are emitted to moduleā¦ (authored by klausler).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D135207/new/
https://reviews.llvm.org/D135207
Files:
flang/lib/Semantics/resolve-names.cpp
flang/test/Semantics/modfile52.f90
Index: flang/test/Semantics/modfile52.f90
===================================================================
--- /dev/null
+++ flang/test/Semantics/modfile52.f90
@@ -0,0 +1,59 @@
+! RUN: %python %S/test_modfile.py %s %flang_fc1
+! Ensure that procedure name or derived type name that has been shadowed
+! behind a generic interface gets its proper USE statement in a module file.
+module m1
+ contains
+ subroutine foo
+ end subroutine
+end module
+module m2
+ use m1
+ interface foo
+ procedure foo
+ end interface
+end module
+module m3
+ type foo
+ end type
+end module
+module m4
+ use m4
+ interface foo
+ procedure bar
+ end interface
+ contains
+ integer function bar
+ end function
+end module
+
+!Expect: m1.mod
+!module m1
+!contains
+!subroutine foo()
+!end
+!end
+
+!Expect: m2.mod
+!module m2
+!use m1,only:foo
+!interface foo
+!procedure::foo
+!end interface
+!end
+
+!Expect: m3.mod
+!module m3
+!type::foo
+!end type
+!end
+
+!Expect: m4.mod
+!module m4
+!interface foo
+!procedure::bar
+!end interface
+!contains
+!function bar()
+!integer(4)::bar
+!end
+!end
Index: flang/lib/Semantics/resolve-names.cpp
===================================================================
--- flang/lib/Semantics/resolve-names.cpp
+++ flang/lib/Semantics/resolve-names.cpp
@@ -2829,7 +2829,7 @@
} else {
return;
}
- } else if (&useUltimate == &BypassGeneric(localUltimate)) {
+ } else if (&useUltimate == &BypassGeneric(localUltimate).GetUltimate()) {
return; // nothing to do; used subprogram is local's specific
}
} else if (useGeneric) {
@@ -3230,7 +3230,7 @@
SayDerivedType(generic.name(),
"Generic interface '%s' may only contain functions due to derived type"
" with same name"_err_en_US,
- *details.derivedType()->scope());
+ *details.derivedType()->GetUltimate().scope());
}
generic.set(isFunction ? Symbol::Flag::Function : Symbol::Flag::Subroutine);
}
@@ -7259,9 +7259,9 @@
}
} else if (ultimate.has<SubprogramDetails>() ||
ultimate.has<SubprogramNameDetails>()) {
- genericDetails.set_specific(ultimate);
+ genericDetails.set_specific(*existing);
} else if (ultimate.has<DerivedTypeDetails>()) {
- genericDetails.set_derivedType(ultimate);
+ genericDetails.set_derivedType(*existing);
} else {
SayAlreadyDeclared(symbolName, *existing);
return;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D135207.465807.patch
Type: text/x-patch
Size: 2429 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/flang-commits/attachments/20221006/8f8760e8/attachment.bin>
More information about the flang-commits
mailing list