RISC-V: Regenerate opt urls.
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr81464.f90
blob425cae9470c435f4684bdd4e79b694f65f23dbee
1 ! { dg-do compile }
2 ! { dg-options "--param parloops-chunk-size=2 -ftree-parallelize-loops=2 -O1" }
4 program main
5 implicit none
6 real, dimension(:,:),allocatable :: a, b, c
7 real :: sm
9 allocate (a(2,2), b(2,2), c(2,2))
11 call random_number(a)
12 call random_number(b)
14 c = matmul(a,b)
15 sm = sum(c)
17 deallocate(a,b,c)
19 end program main