repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixes for host gcc 4.6.1
[zpugcc/jano.git]
/
toolchain
/
gcc
/
libjava
/
testsuite
/
libjava.compile
/
PR5848.java
blob
a1270ff6e59194ad0c207cfbd9748007ea3134e6
1
import
java
.
util
.
Vector
;
2
import
java
.
util
.
Enumeration
;
3
4
public class
PR5848
5
{
6
private
Vector data
;
7
void
sub
()
8
{
9
long
sz
=
0
;
10
for
(
Enumeration e
=
data
.
elements
() ;
e
.
hasMoreElements
() ;) {
11
sz
=+ ((
byte
[])
e
.
nextElement
()).
length
;
12
}
13
}
14
}