This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug fortran/71705] ICE in lower_omp_target, at omp-low.c:16136


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71705

--- Comment #1 from Gerhard Steinmetz <gerhard.steinmetz.fortran@t-online.de> ---
Compiles with save status :

$ cat z2.f90
subroutine s
   real, save :: x
   !!$omp declare target(x)
   x = 0.0
   !$omp target update to(x)
   !$omp target
   x = x + 1.0
   !$omp end target
end

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]