URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gnat.dg/] [import1.adb] - Rev 308
Go to most recent revision | Compare with Previous | Blame | View Log
-- { dg-do compile } -- { dg-options "-g" } package body Import1 is procedure Create (Bounds : Arr) is type Bound_Array is array (Bounds'Range) of Integer; procedure Proc (Ptr : access Bound_Array); pragma Import (C, Proc); Temp : aliased Bound_Array; begin Proc (Temp'Access); end; end Import1;
Go to most recent revision | Compare with Previous | Blame | View Log