https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70854
Jakub Jelinek changed:
What|Removed |Added
Status|NEW |RESOLVED
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70854
--- Comment #4 from Dominique d'Humieres ---
> $ make check-fortran RUNTESTFLAGS="--target_board=unix/-finit-local-zero"
> ...
> # of expected passes38678
> # of unexpected failures293
> # of expected failures 45
> #
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70854
Dominique d'Humieres changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70854
--- Comment #2 from Gerhard Steinmetz
---
As a side note, above examples are more or less a follow-up of pr67885.
---
As tested recently, some more examples from gfortran's testsuite
seem to be affected when running for example with -finit-loc
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70854
--- Comment #1 from Gerhard Steinmetz
---
Similar for other intrinsic types :
$ cat z3.f90
program p
real :: x(2), y(2)
block
real, parameter :: a(2) = 0.0
x = a
block
y = 0.0
end block
end block
end