-
Notifications
You must be signed in to change notification settings - Fork 11.9k
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
[flang] Further work on relaxing BIND(C) enforcement #92029
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
When a BIND(C) interface or subprogram has a dummy argument whose derived type is not BIND(C) but meets the constraints and requirements of a BIND(C) type, accept it with a warning.
llvmbot
added
flang
Flang issues not falling into any other category
flang:semantics
labels
May 13, 2024
@llvm/pr-subscribers-flang-semantics Author: Peter Klausler (klausler) ChangesWhen a BIND(C) interface or subprogram has a dummy argument whose derived type is not BIND(C) but meets the constraints and requirements of a BIND(C) type, accept it with a warning. Full diff: https://github.com/llvm/llvm-project/pull/92029.diff 2 Files Affected:
diff --git a/flang/lib/Semantics/check-declarations.cpp b/flang/lib/Semantics/check-declarations.cpp
index 26efa288b5aee..c9ec3a8a53c1e 100644
--- a/flang/lib/Semantics/check-declarations.cpp
+++ b/flang/lib/Semantics/check-declarations.cpp
@@ -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)};
@@ -2965,6 +2966,9 @@ parser::Messages CheckHelper::WhyNotInteroperableDerivedType(
}
}
}
+ if (msgs.AnyFatalError()) {
+ examinedByWhyNotInteroperableDerivedType_.erase(symbol);
+ }
return msgs;
}
@@ -3052,8 +3056,8 @@ 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(
@@ -3061,7 +3065,9 @@ void CheckHelper::CheckBindC(const Symbol &symbol) {
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);
@@ -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() ||
diff --git a/flang/test/Semantics/bind-c15.f90 b/flang/test/Semantics/bind-c15.f90
new file mode 100644
index 0000000000000..9aaad52cc0e0a
--- /dev/null
+++ b/flang/test/Semantics/bind-c15.f90
@@ -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
|
wangzpgi
approved these changes
May 13, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When a BIND(C) interface or subprogram has a dummy argument whose derived type is not BIND(C) but meets the constraints and requirements of a BIND(C) type, accept it with a warning.