repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
libjava
/
testsuite
/
libjava.lang
/
Overflow.java
blob
312e9cb209f201b672293f9ae05a9b5558306fdc
1
class
Overflow
2
{
3
static int
test
(
int
x
)
4
{
5
return
(
2
*
x
)/
2
;
6
}
7
8
public static void
main
(
String argv
[])
9
{
10
int
x
=
Integer
.
MAX_VALUE
;
11
12
if
(
test
(
x
) ==
x
)
13
throw new
RuntimeException
();
14
}
15
}
16