URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gnat.dg/] [raise_from_pure.adb] - Rev 826
Compare with Previous | Blame | View Log
package body raise_from_pure is function Raise_CE_If_0 (P : Integer) return Integer is begin if P = 0 then raise Constraint_error; end if; return 1; end; end;