aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/opt90e.adb
blob: 6d62774b6d97e85607ea4e65221cfab49fb8bc9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-- { dg-do run }
-- { dg-options "-O2" }

with Ada.Calendar; use Ada.Calendar;
with Opt90e_Pkg; use Opt90e_Pkg;

procedure Opt90e is
  B : constant Integer := Year (Clock);
  V : Data;

begin
  V := (R => (A => 0, B => B, C => 0, D => "000000000000"));
  if V.R.B /= B then
    raise Program_Error;
  end if;
end;