URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gnat.dg/] [opt21_pkg.adb] - Rev 720
Go to most recent revision | Compare with Previous | Blame | View Log
package body Opt21_Pkg is function Get_Object (Object : not null access R) return System.Address is begin return Object.Ptr; end; function Convert (W : Obj) return System.Address is begin if W = null then return System.Null_Address; else return Get_Object (W); end if; end; end Opt21_Pkg;
Go to most recent revision | Compare with Previous | Blame | View Log