aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/array24.adb
blob: c6974365fed5f2f6ebba7a749b12812df24a5e3d (plain)
1
2
3
4
5
6
7
8
9
10
11
-- { dg-do compile }
-- { dg-options "-fdump-tree-optimized" }

procedure Array24 (N : Natural) is
  S : String (1 .. N);
  pragma Volatile (S);
begin
  S := (others => '0');
end;

-- { dg-final { scan-tree-dump-not "builtin_unwind_resume" "optimized"  } }