aarch64: Add vector floating point extend pattern [PR113880, PR113869]
[official-gcc.git] / gcc / testsuite / gfortran.dg / intrinsic_9.f90
blob43959ad85dff069f0b2919857ee540dc36163e44
1 ! { dg-do run }
3 ! PR fortran/92754
5 ! Contributed by G. Steinmetz
8 program p
9 integer :: max
10 block
11 character :: x = max('a','b')
12 !print *, x
13 if (x /= 'b') stop 1
14 end block
15 end