[flang-commits] [flang] [flang] Add parsing of DO CONCURRENT REDUCE clause (PR #92518)
Peter Klausler via flang-commits
flang-commits at lists.llvm.org
Wed May 29 08:10:14 PDT 2024
================
@@ -683,6 +683,64 @@ class DoContext {
}
}
+ void CheckReduce(const parser::LocalitySpec::Reduce &reduce) const {
+ const parser::ReductionOperator &reductionOperator{
+ std::get<parser::ReductionOperator>(reduce.t)};
+ // F'2023 C1132, reduction variables should have suitable intrinsic type
+ for (const parser::Name &x : std::get<std::list<parser::Name>>(reduce.t)) {
+ bool supported_identifier{false};
+ if (x.symbol && x.symbol->GetType()) {
+ const auto *type{x.symbol->GetType()};
+ auto type_mismatch{[&](const char *suitable_types) {
+ context_.Say(currentStatementSourcePosition_,
+ "Reduction variable '%s' ('%s') does not have a "
----------------
klausler wrote:
Please leave error messages as long contiguous character literals, even if they exceed the 80 character limit. Otherwise they would be much harder to find with grep.
https://github.com/llvm/llvm-project/pull/92518
More information about the flang-commits
mailing list