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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [entry_array_specs_2.f] - Blame information for rev 749

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 694 jeremybenn
! { dg-do run }
2
! Tests the patch for PR30025, aka 25818, in which the initialization
3
! code for the array a, was causing a segfault in runtime for a call
4
! to x, since n is missing.
5
!
6
! COntributed by Elizabeth Yip <elizabeth.l.yip@boeing.com>
7
      program test_entry
8
      common // j
9
      real a(10)
10
      a(1) = 999.
11
      call x
12
      if (j .ne. 1) call abort ()
13
      call y(a,10)
14
      if (j .ne. 2) call abort ()
15
      stop
16
      end
17
      subroutine x
18
      common // j
19
      real a(n)
20
      j = 1
21
      return
22
      entry y(a,n)
23
      call foo(a(1))
24
      end
25
      subroutine foo(a)
26
      common // j
27
      real a
28
      j = 2
29
      return
30
      end
31
 

powered by: WebSVN 2.1.0

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