re PR fortran/70696 ([Coarray] ICE on EVENT POST of host-associated EVENT_TYPE coarray)

PR fortran/70696
	* gfortran.dg/coarray/event_3.f0: Add save attribue to x.

From-SVN: r268325
This commit is contained in:
Uros Bizjak 2019-01-27 21:44:36 +01:00 committed by Uros Bizjak
parent f8ec35c322
commit f2b3affbdf
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2019-01-27 Uroš Bizjak <ubizjak@gmail.com>
PR fortran/70696
* gfortran.dg/coarray/event_3.f0: Add save attribue to x.
2019-01-27 Marek Polacek <polacek@redhat.com>
PR c++/88815 - narrowing conversion lost in decltype.

View File

@ -3,9 +3,9 @@
! Check PR fortran/70696 is fixed.
program global_event
use iso_fortran_env , only : event_type
use iso_fortran_env, only : event_type
implicit none
type(event_type) :: x[*]
type(event_type), save :: x[*]
call exchange
contains