URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gnat.dg/] [aggr14_pkg.adb] - Rev 696
Compare with Previous | Blame | View Log
package body Aggr14_Pkg is function F return A is begin if X /= (1, 2, 3) then raise Program_Error; end if; return (1, 1, 1); end; procedure Proc is begin X := F; end; end Aggr14_Pkg;