[AArch64] Merge stores of D-register values with different modes
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr78259.f90
blob82f48ea5f3e23b89d5ee5fc67d2ac8c7ce1e115f
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