AArch64: correct constraint on Upl early clobber alternatives
[official-gcc.git] / gcc / testsuite / gfortran.dg / noreturn-4.f90
blobe4024e27ccc0bb526b15258524e4402960a9d871
1 ! { dg-do run { target { nonpic || pie_enabled } } }
2 ! { dg-options "-O2" }
4 program bar
5 call foo1()
6 call noreturn_autodetection_failed() ! check if optimized out
7 end program
9 subroutine foo1
10 stop 0
11 end subroutine foo1