Commit f2b3affb by Uros Bizjak Committed by Uros Bizjak

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
parent f8ec35c3
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> 2019-01-27 Marek Polacek <polacek@redhat.com>
PR c++/88815 - narrowing conversion lost in decltype. PR c++/88815 - narrowing conversion lost in decltype.
......
...@@ -3,9 +3,9 @@ ...@@ -3,9 +3,9 @@
! Check PR fortran/70696 is fixed. ! Check PR fortran/70696 is fixed.
program global_event program global_event
use iso_fortran_env , only : event_type use iso_fortran_env, only : event_type
implicit none implicit none
type(event_type) :: x[*] type(event_type), save :: x[*]
call exchange call exchange
contains contains
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment