Skip to content

[flang] Further work on relaxing BIND(C) enforcement #92029

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions flang/lib/Semantics/check-declarations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2875,7 +2875,8 @@ parser::Messages CheckHelper::WhyNotInteroperableDerivedType(
} else {
bool interoperableParent{true};
if (parent->symbol()) {
auto bad{WhyNotInteroperableDerivedType(*parent->symbol(), false)};
auto bad{WhyNotInteroperableDerivedType(
*parent->symbol(), /*isError=*/false)};
if (bad.AnyFatalError()) {
auto &msg{msgs.Say(symbol.name(),
"The parent of an interoperable type is not interoperable"_err_en_US)};
Expand Down Expand Up @@ -2965,6 +2966,9 @@ parser::Messages CheckHelper::WhyNotInteroperableDerivedType(
}
}
}
if (msgs.AnyFatalError()) {
examinedByWhyNotInteroperableDerivedType_.erase(symbol);
}
return msgs;
}

Expand Down Expand Up @@ -3052,16 +3056,18 @@ void CheckHelper::CheckBindC(const Symbol &symbol) {
}
context_.SetError(symbol);
} else if (auto bad{WhyNotInteroperableDerivedType(
derived->typeSymbol(), false)};
!bad.empty()) {
derived->typeSymbol(), /*isError=*/false)};
bad.AnyFatalError()) {
if (auto *msg{messages_.Say(symbol.name(),
"The derived type of an interoperable object must be interoperable, but is not"_err_en_US)}) {
msg->Attach(
derived->typeSymbol().name(), "Non-interoperable type"_en_US);
bad.AttachTo(*msg, parser::Severity::None);
}
context_.SetError(symbol);
} else {
} else if (context_.ShouldWarn(
common::LanguageFeature::NonBindCInteroperability) &&
!InModuleFile()) {
if (auto *msg{messages_.Say(symbol.name(),
"The derived type of an interoperable object should be BIND(C)"_warn_en_US)}) {
msg->Attach(derived->typeSymbol().name(), "Non-BIND(C) type"_en_US);
Expand Down Expand Up @@ -3135,7 +3141,7 @@ void CheckHelper::CheckBindC(const Symbol &symbol) {
}
}
} else if (symbol.has<DerivedTypeDetails>()) {
if (auto msgs{WhyNotInteroperableDerivedType(symbol, false)};
if (auto msgs{WhyNotInteroperableDerivedType(symbol, /*isError=*/false)};
!msgs.empty()) {
bool anyFatal{msgs.AnyFatalError()};
if (msgs.AnyFatalError() ||
Expand Down
45 changes: 45 additions & 0 deletions flang/test/Semantics/bind-c15.f90
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
! RUN: %python %S/test_errors.py %s %flang_fc1 -pedantic

module m
type, bind(c) :: explicit_bind_c
real a
end type
type :: interoperable1
type(explicit_bind_c) a
end type
type, extends(interoperable1) :: interoperable2
real b
end type
type :: non_interoperable1
real, allocatable :: a
end type
type :: non_interoperable2
type(non_interoperable1) b
end type
interface
subroutine sub_bind_c_1(x_bind_c) bind(c)
import explicit_bind_c
type(explicit_bind_c), intent(in) :: x_bind_c
end
subroutine sub_bind_c_2(x_interop1) bind(c)
import interoperable1
!WARNING: The derived type of an interoperable object should be BIND(C)
type(interoperable1), intent(in) :: x_interop1
end
subroutine sub_bind_c_3(x_interop2) bind(c)
import interoperable2
!WARNING: The derived type of an interoperable object should be BIND(C)
type(interoperable2), intent(in) :: x_interop2
end
subroutine sub_bind_c_4(x_non_interop1) bind(c)
import non_interoperable1
!ERROR: The derived type of an interoperable object must be interoperable, but is not
type(non_interoperable1), intent(in) :: x_non_interop1
end
subroutine sub_bind_c_5(x_non_interop2) bind(c)
import non_interoperable2
!ERROR: The derived type of an interoperable object must be interoperable, but is not
type(non_interoperable2), intent(in) :: x_non_interop2
end
end interface
end
Loading