* prims.cc (_Jv_PrimClass): Use JV_STATE_NOTHING', not 0'.

From-SVN: r31467
This commit is contained in:
Tom Tromey 2000-01-17 18:56:43 +00:00 committed by Tom Tromey
parent 9b4579b3bb
commit 451f21ef2d
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2000-01-15 Tom Tromey <tromey@cygnus.com>
* prims.cc (_Jv_PrimClass): Use `JV_STATE_NOTHING', not `0'.
2000-01-14 Andrew Haley <aph@cygnus.com>
* java/lang/natThrowable.cc: New file.
@ -27,7 +31,7 @@
* name-finder.cc: New file.
* include/name-finder.h: New file.
2000-01-16 Anthony Green <green@cygnus.com>
* java/lang/StringBuffer.java (StringBuffer): Don't special case

View File

@ -1,6 +1,6 @@
// prims.cc - Code for core of runtime environment.
/* Copyright (C) 1998, 1999 Cygnus Solutions
/* Copyright (C) 1998, 1999, 2000 Cygnus Solutions
This file is part of libgcj.
@ -558,7 +558,7 @@ public:
interfaces = NULL;
loader = NULL;
interface_count = 0;
state = 0; // FIXME.
state = JV_STATE_NOTHING;
thread = NULL;
}
};