PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / guality / pr41558.f90
blob34288377334a9e8aa3ded9d8e073c2fb9203a9ab
1 ! PR debug/41558
2 ! { dg-do run }
3 ! { dg-skip-if "PR testsuite/51875" { { hppa*-*-hpux* } && { ! lp64 } } }
4 ! { dg-options "-g" }
6 subroutine f (s)
7 character(len=3) :: s
8 write (*,*) s ! { dg-final { gdb-test 7 "s" "'foo'" } }
9 end
10 call f ('foo')
11 end