2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g77.f-torture / execute / 980628-5.f
blob14f39e3c51e0c89986197e36e8ce5dfed5a9dfde
1 * g77 0.5.23 and previous had bugs involving too little space
2 * allocated for EQUIVALENCE and COMMON areas needing initial
3 * padding to meet alignment requirements of the system,
4 * including when initial values are provided (e.g. DATA).
6 program test
7 implicit none
9 character c
10 double precision d
11 common /cmn/ c, d
13 if (c .ne. '1') call abort
14 if (d .ne. 10.) call abort
16 end
18 block data init
19 implicit none
21 character c
22 double precision d
23 common /cmn/ c, d
25 data c/'1'/, d/10./
27 end