expand: Add debug dump on the cost for `popcount==1` expand
[official-gcc.git] / gcc / testsuite / gfortran.fortran-torture / execute / contained.f90
blobc6e66e88e9971423363ce811f396c7f0e8323a89
1 program contained
2 implicit none
3 integer i
5 i = 0;
6 call testproc (40)
7 if (i .ne. 42) STOP 1
8 contains
9 subroutine testproc (p)
10 implicit none
11 integer p
13 if (p .ne. 40) STOP 2
14 i = p + 2
15 end subroutine
16 end program