arm: Add .type and .size to __gnu_cmse_nonsecure_call [PR115360]
[official-gcc.git] / gcc / testsuite / gfortran.dg / internal_pack_11.f90
blobc341a1bbc5faf4f851e45648f4eac17eff7f12f5
1 ! { dg-do compile }
2 ! { dg-options "-O0 -fdump-tree-original" }
4 ! Test the fix for PR43173, where unnecessary calls to internal_pack/unpack
5 ! were being produced below. These references are contiguous and so do not
6 ! need a temporary.
8 ! Contributed Tobias Burnus <burnus@gcc.gnu.org>
10 REAL, allocatable :: ot(:)
11 integer :: time_steps
13 call foo (ot) ! OK, no temporary
14 call foo (ot(0:5:1)) ! Was an unnecessary temporary
15 call foo (ot(0:time_steps)) ! Was an unnecessary temporary
16 end
17 ! { dg-final { scan-tree-dump-times "unpack" 0 "original" } }