PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / optional_mask.f90
blobde7bd339bd8320f56223f85fddc5f15e2930579d
1 ! { dg-do compile }
2 ! Bug 45794 - ICE: Segmentation fault in gfc_conv_procedure_call
3 subroutine foo (vector, mask)
4 real :: vector(:)
5 logical, optional :: mask(:)
6 integer :: loc(1)
7 if (present(mask)) then
8 loc = maxloc(vector, mask)
9 end if
10 end subroutine