OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [strcommon_1.f90] - Blame information for rev 12

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 12 jlechner
! PR14081 character variables in common blocks.
2
 
3
subroutine test1
4
  implicit none
5
  common /block/ c
6
  character(len=12) :: c
7
 
8
  if (c .ne. "Hello World") call abort
9
end subroutine
10
 
11
subroutine test2
12
  implicit none
13
  common /block/ a
14
  character(len=6), dimension(2) :: a
15
 
16
  if ((a(1) .ne. "Hello") .or. (a(2) .ne. "World")) call abort
17
end subroutine
18
 
19
program strcommon_1
20
  implicit none
21
  common /block/ s, t
22
  character(len=6) :: s, t
23
  s = "Hello "
24
  t = "World "
25
  call test1
26
  call test2
27
end program
28
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.