This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
bug in gcj, maybe with multiple .class inputs
- To: Java Discuss List <java at gcc dot gnu dot org>
- Subject: bug in gcj, maybe with multiple .class inputs
- From: Tom Tromey <tromey at redhat dot com>
- Date: 04 Apr 2001 18:34:18 -0600
- Reply-To: tromey at redhat dot com
I downloaded Hans Boehm's constructive reals calculator:
http://www.hpl.hp.com/personal/Hans_Boehm/crcalc/
I tried to build it with the latest 3.0 branch gcj.
I build the .class files and then try to compile them all at once:
creche. gcj -O -o TestCR --main=com.sgi.math.TestCR com/sgi/math/*.class
CR.java: In class `com.sgi.math.slow_CR':
CR.java: In method `com.sgi.math.slow_CR.get_appr(int)':
CR.java:0: verification error at PC=90
CR.java:0: falling through end of method
CR.java: In method `()':
CR.java:0: verification error at PC=4
CR.java:0: falling through end of method
However if I compile the .class files one at a time, things work fine.
Tom