URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gnat.dg/] [specs/] [elab1.ads] - Rev 378
Go to most recent revision | Compare with Previous | Blame | View Log
-- { dg-do compile } pragma Restrictions(No_Elaboration_Code); with System; package Elab1 is type Ptrs_Type is array (Integer range 1 .. 2) of System.Address; type Vars_Array is array (Integer range 1 .. 2) of Integer; Vars : Vars_Array; Val1 : constant Integer := 1; Val2 : constant Integer := 2; Ptrs : constant Ptrs_Type := (1 => Vars (Val1)'Address, 2 => Vars (Val2)'Address); end Elab1;
Go to most recent revision | Compare with Previous | Blame | View Log