[kaffe] Kaffe CVS: kaffe dalibor

Brent Fulgham brent.fulgham@xpsystems.com
Tue, 23 Apr 2002 10:11:48 -0700


> On Tuesday 23 April 2002 12:43, Kaffe CVS wrote:
> > Modified files:
> > 	.              : ChangeLog
> > 	kaffe/kaffevm  : object.c
> >
> > Log message:
> > fixed array allocation overflow bug
>=20
> See changelog for an explanation. This bug was really messing=20
> up our gc and led to a lot of unrelated assertion failure messages.

Unfortunately it does not yet resolve the issue I reported with 'kjc'
under Cygwin as I reported earlier on this list.

I still get:

Administrator@BFULGHAM1 ~/java
$ javac PlusPlusTest.java
assertion "!INTS_DISABLED()" failed: file "exception.c", line 386

If I attempt to compile my test case:

public class PlusPlusTest {
	private int count =3D 0;

	public PlusPlusTest() {
		for (int i =3D 1; i < 5; ++i) {
			//count++;	// This works
			++count;	// This fails
		}
	}

	public static void main(String[] argv) {
		PlusPlusTest ppt =3D new PlusPlusTest();
		System.out.println("Test Key: " + ppt.count);
	}
}

-Brent