arm: Add .type and .size to __gnu_cmse_nonsecure_call [PR115360]
[official-gcc.git] / gcc / testsuite / gfortran.dg / scalarize_parameter_array_2.f90
blob2e0b475afd46a88047642574ad5ce0cac9043cb8
1 ! { dg-do compile }
3 ! Test the fix for PR45305. The if statements should simplify away so
4 ! that 'I_do_not_exist' is not referenced.
6 ! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
8 if (any (abs(bessel_jn([1,2], 1.0) - bessel_jn([1,2], 1.0)) &
9 > epsilon(0.0))) &
10 call I_do_not_exist()
12 if (any (abs(bessel_jn(1, 2, 1.0) - bessel_jn([1,2], 1.0)) &
13 > epsilon(0.0))) &
14 call I_do_not_exist()
15 end