URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [testsuite/] [libjava.lang/] [Overflow.java] - Rev 778
Go to most recent revision | Compare with Previous | Blame | View Log
class Overflow { static int test(int x) { return (2*x)/2; } public static void main(String argv[]) { int x = Integer.MAX_VALUE; if (test(x) == x) throw new RuntimeException (); } }
Go to most recent revision | Compare with Previous | Blame | View Log