Use the ultimate symbol while calling the `IsAllocatableOrPointer`
function to ensure that the check works as expected for
host-associated symbols.
Fixes #58178
Reviewed By: PeteSteinfeld
Differential Revision: https://reviews.llvm.org/D135443
} else if (!IsVariableName(*symbol)) {
context_.Say(name.source,
"name in DEALLOCATE statement must be a variable name"_err_en_US);
- } else if (!IsAllocatableOrPointer(*symbol)) { // C932
+ } else if (!IsAllocatableOrPointer(
+ symbol->GetUltimate())) { // C932
context_.Say(name.source,
"name in DEALLOCATE statement must have the ALLOCATABLE or POINTER attribute"_err_en_US);
} else {
--- /dev/null
+! RUN: %python %S/../test_errors.py %s %flang_fc1 -fopenmp
+
+! Test to check that no errors are present when allocate statements
+! are applied on privatised variables.
+
+subroutine s
+ implicit none
+ double precision,allocatable,dimension(:) :: r
+ !$omp parallel private(r)
+ allocate(r(1))
+ deallocate(r)
+ !$omp end parallel
+end subroutine