URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gnat.dg/] [specs/] [static_initializer5_pkg.ads] - Rev 852
Go to most recent revision | Compare with Previous | Blame | View Log
package Static_Initializer5_Pkg is type Arr is array (Positive range <>) of Character; type Buffer_Type (Length : Positive) is record Content : Arr (1 .. Length); end record; type Buffer_Access is access Buffer_Type; type Rec is tagged record Buffer : Buffer_Access; end record; Null_Rec : constant Rec := (Buffer => null); end Static_Initializer5_Pkg;
Go to most recent revision | Compare with Previous | Blame | View Log