lto: Remove random_seed from section name.
[official-gcc.git] / gcc / testsuite / gfortran.dg / PR113061.f90
blob989bc385c7632774ad8f6b08b41a3cab22f0dde9
1 ! { dg-do compile }
2 ! { dg-options "-fno-move-loop-invariants -Oz" }
3 module module_foo
4 use iso_c_binding
5 contains
6 subroutine foo(a) bind(c)
7 type(c_ptr) a(..)
8 select rank(a)
9 end select
10 call bar
11 end
12 end