[flang-commits] [flang] [Flang][OpenMP] Fixed semantic error when list item with a private da… (PR #109775)
via flang-commits
flang-commits at lists.llvm.org
Tue Sep 24 02:40:20 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-flang-openmp
Author: None (kaviya2510)
<details>
<summary>Changes</summary>
…ta-sharing clause used in 'allocate' clause of 'taskgroup' construct.
Issue: A list item with a private data-sharing clause used in 'allocate' clause of 'taskgroup' construct throws an error "The ALLOCATE clause requires that 'x' must be listed in a private data-sharing attribute clause on the same directive"
Fix: As omp_taskgroup doesn't accept data sharing clauses, the list item in the allocate clause should accept the data sharing clause of list items from the enclosing directive.
---
Full diff: https://github.com/llvm/llvm-project/pull/109775.diff
2 Files Affected:
- (modified) flang/lib/Semantics/resolve-directives.cpp (+10-2)
- (added) flang/test/Semantics/OpenMP/omp_taskgroup_allocate.f90 (+12)
``````````diff
diff --git a/flang/lib/Semantics/resolve-directives.cpp b/flang/lib/Semantics/resolve-directives.cpp
index 17567a555db326..6de37f5235e098 100644
--- a/flang/lib/Semantics/resolve-directives.cpp
+++ b/flang/lib/Semantics/resolve-directives.cpp
@@ -1540,8 +1540,16 @@ bool OmpAttributeVisitor::Pre(const parser::OpenMPBlockConstruct &x) {
}
if (beginDir.v == llvm::omp::Directive::OMPD_master)
IssueNonConformanceWarning(beginDir.v, beginDir.source);
- ClearDataSharingAttributeObjects();
- ClearPrivateDataSharingAttributeObjects();
+
+ // The omp_taskgroup directive doesn't have its own data-sharing clauses.
+ // It inherits data-sharing attributes from the surrounding context.
+ // Therefore, don't clear the data-sharing attributes if it's an omp taskgroup
+ if (beginDir.v != llvm::omp::Directive::OMPD_taskgroup)
+ {
+ ClearDataSharingAttributeObjects();
+ ClearPrivateDataSharingAttributeObjects();
+ }
+
ClearAllocateNames();
return true;
}
diff --git a/flang/test/Semantics/OpenMP/omp_taskgroup_allocate.f90 b/flang/test/Semantics/OpenMP/omp_taskgroup_allocate.f90
new file mode 100644
index 00000000000000..36bb713f3a13fa
--- /dev/null
+++ b/flang/test/Semantics/OpenMP/omp_taskgroup_allocate.f90
@@ -0,0 +1,12 @@
+! RUN: %flang_fc1 -fopenmp -fsyntax-only %s
+
+! Verify that a list item with a private data-sharing clause used in the 'allocate' clause of 'taskgroup'
+! causes no semantic errors.
+
+subroutine omp_allocate_taskgroup
+ integer :: x
+ !$omp parallel private(x)
+ !$omp taskgroup allocate(x)
+ !$omp end taskgroup
+ !$omp end parallel
+end subroutine
``````````
</details>
https://github.com/llvm/llvm-project/pull/109775
More information about the flang-commits
mailing list