URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gnat.dg/] [debug3.adb] - Rev 696
Compare with Previous | Blame | View Log
-- { dg-do compile } -- { dg-options "-g" } with Ada.Unchecked_Conversion; with System; package body Debug3 is type Rec is record I : Integer; end record; for Rec'Alignment use 1; type Ptr is access Rec; function To_Ptr is new Ada.Unchecked_Conversion(System.Address, Ptr); procedure Proc is function Get (S1 : String) return Ptr is begin return To_Ptr (S1'Address); end; M : Ptr; begin M := Get (""); end; end Debug3;