[flang-commits] [PATCH] D143836: [flang] Strengthen conformance requirements for allocatable/pointer dummy arguments
Peter Klausler via Phabricator via flang-commits
flang-commits at lists.llvm.org
Tue Feb 14 09:13:34 PST 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rG016d5a0a0a15: [flang] Strengthen conformance requirements for allocatable/pointer dummy… (authored by klausler).
Changed prior to commit:
https://reviews.llvm.org/D143836?vs=496729&id=497356#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D143836/new/
https://reviews.llvm.org/D143836
Files:
flang/lib/Semantics/check-call.cpp
flang/test/Semantics/call05.f90
Index: flang/test/Semantics/call05.f90
===================================================================
--- flang/test/Semantics/call05.f90
+++ flang/test/Semantics/call05.f90
@@ -197,6 +197,7 @@
!ERROR: ALLOCATABLE dummy argument 'b=' must be associated with an ALLOCATABLE actual argument
call smb(x(:))
+ !ERROR: Rank of dummy argument is 1, but actual argument has rank 0
!ERROR: ALLOCATABLE dummy argument 'b=' must be associated with an ALLOCATABLE actual argument
call smb(x(2))
Index: flang/lib/Semantics/check-call.cpp
===================================================================
--- flang/lib/Semantics/check-call.cpp
+++ flang/lib/Semantics/check-call.cpp
@@ -195,6 +195,12 @@
// Basic type & rank checking
parser::ContextualMessages &messages{context.messages()};
CheckCharacterActual(actual, dummy, actualType, context, messages);
+ bool dummyIsAllocatable{
+ dummy.attrs.test(characteristics::DummyDataObject::Attr::Allocatable)};
+ bool dummyIsPointer{
+ dummy.attrs.test(characteristics::DummyDataObject::Attr::Pointer)};
+ bool dummyIsAllocatableOrPointer{dummyIsAllocatable || dummyIsPointer};
+ allowActualArgumentConversions &= !dummyIsAllocatableOrPointer;
if (allowActualArgumentConversions) {
ConvertIntegerActual(actual, dummy.type, actualType, messages);
}
@@ -215,7 +221,7 @@
if (isElemental) {
} else if (dummy.type.attrs().test(
characteristics::TypeAndShape::Attr::AssumedRank)) {
- } else if (dummy.type.Rank() > 0 &&
+ } else if (dummy.type.Rank() > 0 && !dummyIsAllocatableOrPointer &&
!dummy.type.attrs().test(
characteristics::TypeAndShape::Attr::AssumedShape) &&
!dummy.type.attrs().test(
@@ -229,7 +235,9 @@
// Let CheckConformance accept actual scalars; storage association
// cases are checked here below.
CheckConformance(messages, dummy.type.shape(), actualType.shape(),
- evaluate::CheckConformanceFlags::RightScalarExpandable,
+ dummyIsAllocatableOrPointer
+ ? evaluate::CheckConformanceFlags::None
+ : evaluate::CheckConformanceFlags::RightScalarExpandable,
"dummy argument", "actual argument");
}
} else {
@@ -357,7 +365,8 @@
"Assumed-size array may not be associated with assumed-shape %s"_err_en_US,
dummyName);
}
- } else if (actualRank == 0 && dummy.type.Rank() > 0) {
+ } else if (actualRank == 0 && dummy.type.Rank() > 0 &&
+ !dummyIsAllocatableOrPointer) {
// Actual is scalar, dummy is an array. 15.5.2.4(14), 15.5.2.11
if (actualIsCoindexed) {
messages.Say(
@@ -411,8 +420,6 @@
} else if (dummy.intent == common::Intent::InOut) {
reason = "INTENT(IN OUT)";
}
- bool dummyIsPointer{
- dummy.attrs.test(characteristics::DummyDataObject::Attr::Pointer)};
if (reason && scope) {
// Problems with polymorphism are caught in the callee's definition.
DefinabilityFlags flags{DefinabilityFlag::PolymorphicOkInPure};
@@ -465,8 +472,6 @@
}
// 15.5.2.6 -- dummy is ALLOCATABLE
- bool dummyIsAllocatable{
- dummy.attrs.test(characteristics::DummyDataObject::Attr::Allocatable)};
bool actualIsAllocatable{evaluate::IsAllocatableDesignator(actual)};
if (dummyIsAllocatable) {
if (!actualIsAllocatable) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D143836.497356.patch
Type: text/x-patch
Size: 3372 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/flang-commits/attachments/20230214/e22eeb12/attachment.bin>
More information about the flang-commits
mailing list