-
Bug
-
Resolution: Won't Fix
-
P4
-
None
-
1.1.8
-
x86
-
windows_nt
Name: skT88420 Date: 08/17/99
java full version "JDK1.1.8M"
java version "1.1.8"
Win NT 4
when compiled with javac and executed with java, the following message appears:
A nonfatal internal JIT (3.00.072b(x)) error 'OperTableswitch' has occurred in :
'toto.body_2_content ()V': Interpreting method.
Please report this error in detail to http://java.sun.com/cgi-bin/bugreport.cgi
Source code ( reduced from a 15000 line file generated by javacc to this simple class.... )
import java.text.*;
class toto {
public static void main(String args[]) throws Exception {
toto hp = new toto() ;
hp.body_2_content() ;
}
public toto() {
}
final public void body_2_content() throws ParseException {
if ("".equals(" ")) {
label_10:
while (true) {
switch (" ".length()) {
case 0:
;
break;
default:
break label_10;
}
}
} else {
label_11:
while (true) {
if ("".equals("")) {
;
} else {
break label_11;
}
}
}
}
}
(Review ID: 94041)
======================================================================