2004-01-16 Paul Brook <paul@codesourcery.com>
[official-gcc.git] / gcc / testsuite / gfortran.dg / common_4.f90
blob9ff21230da98ac24c97901cb78fd85ba114446b2
1 ! { dg-do run }
2 ! Suppress warnings about misaligned common blocks.
3 ! { dg-options "-w" }
4 ! Check misaligned common blocks.
5 program prog
6 common /block/ a, b, c
7 integer*1 a
8 integer*4 b, c
9 a = 1
10 b = HUGE(b)
11 c = 2
12 call foo
13 end program
14 subroutine foo
15 common /block/ a, b, c
16 integer*1 a
17 integer*4 b, c
18 if (a .ne. 1 .or. b .ne. HUGE(b) .or. c .ne. 2) call abort
19 end subroutine