URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gnat.dg/] [gnatg.adb] - Rev 696
Compare with Previous | Blame | View Log
-- { dg-do compile } -- { dg-options "-gnatD" } with System; with Ada.Unchecked_Conversion; procedure gnatg is subtype Address is System.Address; type T is access procedure; function Cvt is new Ada.Unchecked_Conversion (Address, T); X : T; begin X := Cvt (Gnatg'Address); end gnatg;