repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2017-12-08 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
bounds_check_1.f90
blob
c05f4456a11055e490880639c00384e4aae0c7a2
1
! { dg-do run }
2
! { dg-options "-fbounds-check" }
3
! PR fortran/27524
4
integer
::
res
(
1
)
5
res
=
F
()
6
if
(
res
(
1
) /=
1
)
call
abort
7
contains
8
function
F
()
9
integer
::
F
(
1
)
10
f
=
1
11
end function
F
12
end