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/] [capture_value.adb] - Rev 315
Go to most recent revision | Compare with Previous | Blame | View Log
-- { dg-do run } procedure capture_value is x : integer := 0; begin declare z : integer renames x; begin z := 3; x := 5; z := z + 1; if z /= 6 then raise Program_Error; end if; end; end;
Go to most recent revision | Compare with Previous | Blame | View Log