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
PR target/83368
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
matmul_16.f90
blob
9def133634478a5215100bd48b1ae1d1fed79e48
1
! { dg-do run }
2
! { dg-options "-finline-matmul-limit=0" }
3
! PR 80975 - this did not zero the result array
4
program
bogus_matmul
5
implicit none
6
real
::
M
(
3
,
0
),
v
(
0
),
w
(
3
)
7
8
w
=
7
9
w
=
matmul
(
M
,
v
)
10
if
(
any
(
w
.
ne
.
0
) )
then
11
call
abort
12
end if
13
end program
bogus_matmul