[all-commits] [llvm/llvm-project] e910f6: [Flang][OpenMP] Fix type in getBaseObject causing ...
agozillon via All-commits
all-commits at lists.llvm.org
Fri Jun 14 05:35:20 PDT 2024
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: e910f61fb1810020ab68fdf6479bde03e702e013
https://github.com/llvm/llvm-project/commit/e910f61fb1810020ab68fdf6479bde03e702e013
Author: agozillon <Andrew.Gozillon at amd.com>
Date: 2024-06-14 (Fri, 14 Jun 2024)
Changed paths:
M flang/lib/Lower/OpenMP/Clauses.cpp
Log Message:
-----------
[Flang][OpenMP] Fix type in getBaseObject causing crashes in certain scenarios (#95472)
This typo would unfortunately cause code like the following to ICE,
where common block symbols/names are used in a map clause:
subroutine sb()
implicit none
integer:: b, c
common /var/ b, c
!$omp target map(tofrom: /var/)
b = 1
c = 2
!$omp end target
end subroutine
To unsubscribe from these emails, change your notification settings at https://github.com/llvm/llvm-project/settings/notifications
More information about the All-commits
mailing list