aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g77.f-torture/execute/980628-5.f
blob: 14f39e3c51e0c89986197e36e8ce5dfed5a9dfde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
* g77 0.5.23 and previous had bugs involving too little space
* allocated for EQUIVALENCE and COMMON areas needing initial
* padding to meet alignment requirements of the system,
* including when initial values are provided (e.g. DATA).

      program test
      implicit none

      character c
      double precision d
      common /cmn/ c, d

      if (c .ne. '1') call abort
      if (d .ne. 10.) call abort

      end

      block data init
      implicit none

      character c
      double precision d
      common /cmn/ c, d

      data c/'1'/, d/10./

      end