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
Add __builtion_unreachable to vector::size(), vector::capacity()
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
intrinsic_size_2.f90
blob
6070bc21b7de5255e86ced5441caba7e1bb176f9
1
! { dg-do compile }
2
!
3
! PR fortran/51904
4
!
5
! Contributed by David Sagan.
6
!
7
8
call
qp_draw_polyline_basic
([
1.0
,
2.0
])
9
contains
10
subroutine
qp_draw_polyline_basic
(
x
)
11
implicit none
12
real
::
x
(:),
f
13
integer
::
i
14
f
=
0
15
print
*,
size
(
f
*
x
)
16
end subroutine
17
end