URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gnat.dg/] [misaligned_param_pkg.adb] - Rev 304
Compare with Previous | Blame | View Log
package body Misaligned_Param_Pkg is type IP is access all Integer; function Channel_Eth (Kind : IP) return Integer; pragma Export (Ada, Channel_Eth, "channel_eth"); function Channel_Eth (Kind : IP) return Integer is begin Kind.all := 111; return 0; end; end Misaligned_Param_Pkg;