[flang-commits] [PATCH] D139129: [flang] Take character function length into account when testing compatibility
Peter Klausler via Phabricator via flang-commits
flang-commits at lists.llvm.org
Sat Dec 3 12:35:40 PST 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG9114ce4d1da9: [flang] Take character function length into account when testing compatibility (authored by klausler).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D139129/new/
https://reviews.llvm.org/D139129
Files:
flang/lib/Evaluate/characteristics.cpp
flang/test/Semantics/call25.f90
Index: flang/test/Semantics/call25.f90
===================================================================
--- flang/test/Semantics/call25.f90
+++ flang/test/Semantics/call25.f90
@@ -13,6 +13,10 @@
character(5), intent(in) :: x
explicitLength = x
end function
+ character(6) function badExplicitLength(x)
+ character(5), intent(in) :: x
+ badExplicitLength = x
+ end function
real function notChar(x)
character(*), intent(in) :: x
notChar = 0
@@ -34,6 +38,8 @@
external assumedlength
character(5) :: assumedlength
call subr1(explicitLength)
+ !CHECK: error: Actual argument function associated with procedure dummy argument 'f=' has incompatible result type
+ call subr1(badExplicitLength)
call subr1(assumedLength)
!CHECK: error: Actual argument function associated with procedure dummy argument 'f=' has incompatible result type
call subr1(notChar)
@@ -42,6 +48,9 @@
!CHECK: error: Actual argument function associated with procedure dummy argument 'f=' has incompatible result type
call subr2(notChar)
call subr3(explicitLength)
+ !CHECK: warning: If the procedure's interface were explicit, this reference would be in error
+ !CHECK: because: Actual argument function associated with procedure dummy argument 'f=' has incompatible result type
+ call subr3(badExplicitLength)
call subr3(assumedLength)
!CHECK: warning: If the procedure's interface were explicit, this reference would be in error
!CHECK: because: Actual argument function associated with procedure dummy argument 'f=' has incompatible result type
Index: flang/lib/Evaluate/characteristics.cpp
===================================================================
--- flang/lib/Evaluate/characteristics.cpp
+++ flang/lib/Evaluate/characteristics.cpp
@@ -921,7 +921,7 @@
if (whyNot) {
*whyNot = "function results have distinct constant extents";
}
- } else if (!ifaceTypeShape->type().IsTkCompatibleWith(
+ } else if (!ifaceTypeShape->type().IsTkLenCompatibleWith(
actualTypeShape->type())) {
if (whyNot) {
*whyNot = "function results have incompatible types: "s +
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D139129.479861.patch
Type: text/x-patch
Size: 2185 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/flang-commits/attachments/20221203/27219d64/attachment.bin>
More information about the flang-commits
mailing list