URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gnat.dg/] [aliasing3_pkg.ads] - Rev 720
Go to most recent revision | Compare with Previous | Blame | View Log
package Aliasing3_Pkg is type Arr is array (1..3) of Integer; procedure Test (A : Arr); pragma Inline (Test); type My_Arr is new Arr; type Rec is record A : My_Arr; end record; type Ptr is access all Rec; Block : aliased Rec; Pointer : Ptr := Block'Access; end Aliasing3_Pkg;
Go to most recent revision | Compare with Previous | Blame | View Log