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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc3/] [gcc/] [testsuite/] [gfortran.dg/] [gomp/] [sharing-1.f90] - Blame information for rev 516

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 302 jeremybenn
! { dg-do compile }
2
! { dg-require-effective-target tls_native }
3
 
4
  integer :: thrpriv, thr, i, j, s, g1, g2, m
5
  integer, dimension (6) :: p
6
  common /thrblk/ thr
7
  common /gblk/ g1
8
  save thrpriv, g2
9
!$omp threadprivate (/thrblk/, thrpriv)
10
  s = 1
11
!$omp parallel do default (none) &
12
!$omp & private (p) shared (s) ! { dg-error "enclosing parallel" }
13
  do i = 1, 64
14
    call foo (thrpriv)  ! Predetermined - threadprivate
15
    call foo (thr)      ! Predetermined - threadprivate
16
    call foo (i)        ! Predetermined - omp do iteration var
17
    do j = 1, 64        ! Predetermined - sequential loop
18
      call foo (j)      ! iteration variable
19
    end do
20
    call bar ((/ (k * 4, k = 1, 8) /)) ! Predetermined - implied do
21
    forall (l = 1 : i) &! Predetermined - forall indice
22
      p(l) = 6          ! Explicitly determined - private
23
    call foo (s)        ! Explicitly determined - shared
24
    call foo (g1)       ! { dg-error "not specified in" }
25
    call foo (g2)       ! { dg-error "not specified in" }
26
    call foo (m)        ! { dg-error "not specified in" }
27
  end do
28
end

powered by: WebSVN 2.1.0

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