URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [common_size.f90] - Rev 843
Go to most recent revision | Compare with Previous | Blame | View Log
! The size of common 'com1' should be 80, instead of 112.
program common_size
real (kind=8) a(8)
real (kind=8) b(5), c(5)
common /com1/b,c
equivalence (a(1), b(2))
b = 100
c = 200
if ((a (4) .ne. 100) .or. (a(5) .ne. 200)) call abort
end
Go to most recent revision | Compare with Previous | Blame | View Log