* snames.ads-tmpl (Name_Ivdep): New pragma-related name.
[official-gcc.git] / gcc / testsuite / gnat.dg / pack9.adb
blob7e74050d35fd85251c306c6621b9d8a0106cdf72
1 -- { dg-do compile }
2 -- { dg-options "-O2 -gnatp -fdump-tree-optimized" }
3 -- See PR tree-optimization/46801 for the expected failure
5 package body Pack9 is
7 procedure Copy (X, Y : R2_Ptr) is
8 T : R2 := Y.all;
9 begin
10 if T.I2 /= Y.I2 then
11 raise Program_Error;
12 end if;
13 X.all := T;
14 end;
16 end Pack9;
18 -- { dg-final { scan-tree-dump-not "gnat_rcheck" "optimized" } }
19 -- { dg-final { cleanup-tree-dump "optimized" } }