URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [common_4.f90] - Rev 302
Compare with Previous | Blame | View Log
! { dg-do run }! Suppress warnings about misaligned common blocks.! { dg-options "-w" }! Check misaligned common blocks.program progcommon /block/ a, b, cinteger(kind=1) ainteger b, ca = 1b = HUGE(b)c = 2call fooend programsubroutine foocommon /block/ a, b, cinteger(kind=1) ainteger b, cif (a .ne. 1 .or. b .ne. HUGE(b) .or. c .ne. 2) call abortend subroutine
