[to-be-committed] [RISC-V] Use Zbkb for general 64 bit constants when profitable
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr78259.f90
blob4c40aacbcb7b8b7a8b4f9e8a4cffa88cb933b678
1 ! { dg-do compile }
2 ! { dg-options "-fdec-structure" }
4 ! PR fortran/78259
6 ! ICE in gfc_trans_subcomponent_assign
9 subroutine sub
10 structure /s/
11 union
12 map
13 integer n(2)
14 end map
15 map
16 integer(8) m /2/
17 end map
18 end union
19 end structure
20 record /s/ r
21 r.n(1) = 1
22 end