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
RISC-V: Refactor Dynamic LMUL codes
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
coverage.f90
blob
e0800f869c17ee1731372903bcc30ef1c0a475fa
1
! { dg-do compile }
2
! { dg-additional-options "-fprofile-arcs -ftest-coverage" }
3
!
4
! PR fortran/95847
5
!
6
module
foo
7
contains
8
subroutine
sbr
()
9
end subroutine
sbr
10
end module
foo
11
12
function
foo_suite
()
result
(
suite
)
13
use
foo
14
integer
::
bar
15
integer
::
res
16
res
=
bar
(
sbr
)
17
end function
foo_suite