1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
! { dg-do compile }
! Test that
! #pragma GCC unroll n
! rejects invalid n and improper use
subroutine wrong1(n)
implicit NONE
integer (kind=1), intent(in) :: n
integer (kind=4) :: i
!GCC$ unroll 999999999 ! { dg-error "non-negative integral constant less than" }
DO i=0, n, 1
call dummy1(i)
ENDDO
end subroutine wrong1
subroutine wrong2(a, b, n)
implicit NONE
integer (kind=1), intent(in) :: n
integer :: a(n), b(n)
integer (kind=4) :: i
!GCC$ unroll -1 ! { dg-error "non-negative integral constant less than" }
DO i=1, n, 2
call dummy2(a(i), b(i), i)
ENDDO
end subroutine wrong2
subroutine wrong3(a, b, n)
implicit NONE
integer (kind=1), intent(in) :: n
integer :: a(n), b(n)
integer (kind=4) :: i
!GCC$ unroll 8
write (*,*) "wrong"! { dg-error "directive not at the start of a loop" }
DO i=n, 1, -1
call dummy2(a(i), b(i), i)
ENDDO
end subroutine wrong3
|