arm: Add .type and .size to __gnu_cmse_nonsecure_call [PR115360]
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr89956.f90
blobf850afdebc1f5953a7256f89598b4e4f684242f3
1 ! { dg-options "-O3 -fno-tree-forwprop -fno-tree-pre -fno-tree-dominator-opts -fno-code-hoisting -ffast-math" }
3 module de
4 contains
5 function zu (az, xx) result (q3)
6 real :: az, xx, q3
8 q3 = 1.0 - lz (az, xx) - lz (xx, az)
9 end function zu
11 function lz (ho, gh) result (ye)
12 real :: ho, gh, ye
14 ye = sqrt (ho) - ho * gh
15 end function lz
16 end module de