URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gnat.dg/] [loop_optimization8_pkg1.ads] - Rev 720
Go to most recent revision | Compare with Previous | Blame | View Log
with Ada.Finalization; package Loop_Optimization8_Pkg1 is type Array_T is array (Positive range <>) of Natural; type Array_Access_T is access Array_T; type T is new Ada.Finalization.Controlled with record Last : Natural := 0; Elements : Array_Access_T; end record; Empty : T := (Ada.Finalization.Controlled with Last => 0, Elements => null); generic with procedure Action (Info : Natural); procedure Iter; end Loop_Optimization8_Pkg1;
Go to most recent revision | Compare with Previous | Blame | View Log