[Bug fortran/104252] OpenMP array reduction support issue

2022-01-26 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104252 --- Comment #2 from Andrew Pinski --- Note the C/C++ front-end do support this though: int main(void) { const int n = 3; int a[n]={}; int i, j, s, t; for (i = 0; i < n ; i++) { t = 0; #pragma omp parallel for reduction(+:a[i])

[Bug fortran/104252] OpenMP array reduction support issue

2022-01-26 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104252 Andrew Pinski changed: What|Removed |Added Last reconfirmed||2022-01-26 Keywords|