[flang-commits] [flang] [flang][Semantics][OpenMP] Fix ICE for unknown reduction starting with . (PR #94398)
via flang-commits
flang-commits at lists.llvm.org
Tue Jun 4 13:24:06 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-flang-semantics
Author: Tom Eccles (tblah)
<details>
<summary>Changes</summary>
In this case the union inside of the `parser::DefinedOperator` contains a string name instead of the expected
`parser::DefinedOperator::IntrinsicOperator`. This led to a `std::abort`.
This patch adapts the code so that if it contains a string name we emit a semantic error.
---
Full diff: https://github.com/llvm/llvm-project/pull/94398.diff
2 Files Affected:
- (modified) flang/lib/Semantics/check-omp-structure.cpp (+11-3)
- (added) flang/test/Semantics/OpenMP/reduction13.f90 (+10)
``````````diff
diff --git a/flang/lib/Semantics/check-omp-structure.cpp b/flang/lib/Semantics/check-omp-structure.cpp
index 5e3a5725c18d2..96beb771eb48e 100644
--- a/flang/lib/Semantics/check-omp-structure.cpp
+++ b/flang/lib/Semantics/check-omp-structure.cpp
@@ -2321,9 +2321,17 @@ bool OmpStructureChecker::CheckReductionOperators(
common::visit(
common::visitors{
[&](const parser::DefinedOperator &dOpr) {
- const auto &intrinsicOp{
- std::get<parser::DefinedOperator::IntrinsicOperator>(dOpr.u)};
- ok = CheckIntrinsicOperator(intrinsicOp);
+ const auto *intrinsicOp{
+ std::get_if<parser::DefinedOperator::IntrinsicOperator>(
+ &dOpr.u)};
+ if (intrinsicOp) {
+ ok = CheckIntrinsicOperator(*intrinsicOp);
+ } else {
+ context_.Say(GetContext().clauseSource,
+ "Invalid reduction operator in REDUCTION "
+ "clause."_err_en_US,
+ ContextDirectiveAsFortran());
+ }
},
[&](const parser::ProcedureDesignator &procD) {
const parser::Name *name{std::get_if<parser::Name>(&procD.u)};
diff --git a/flang/test/Semantics/OpenMP/reduction13.f90 b/flang/test/Semantics/OpenMP/reduction13.f90
new file mode 100644
index 0000000000000..b8d50ff9d26b9
--- /dev/null
+++ b/flang/test/Semantics/OpenMP/reduction13.f90
@@ -0,0 +1,10 @@
+! RUN: %python %S/../test_errors.py %s %flang_fc1 -fopenmp
+! OpenMP Version 4.5
+! 2.15.3.6 Reduction Clause
+program omp_reduction
+ integer :: k
+ ! miss-spelling. Should be "min"
+ !ERROR: Invalid reduction operator in REDUCTION clause.
+ !$omp parallel reduction(.min.:k)
+ !$omp end parallel
+end program omp_reduction
``````````
</details>
https://github.com/llvm/llvm-project/pull/94398
More information about the flang-commits
mailing list