* java-tree.h: Move JV_STATE_ERROR before JV_STATE_DONE.

From-SVN: r58762
This commit is contained in:
Tom Tromey 2002-11-02 23:52:26 +00:00 committed by Tom Tromey
parent 2640ad1110
commit 60b68525a5
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,7 @@
2002-11-02 Tom Tromey <tromey@redhat.com>
* java-tree.h: Move JV_STATE_ERROR before JV_STATE_DONE.
* class.c (make_method_value): Put class name, not signature, into
`throws' field. For PR java/8415.

View File

@ -1740,9 +1740,10 @@ enum
JV_STATE_LINKED = 9, /* Strings interned. */
JV_STATE_IN_PROGRESS = 10, /* <Clinit> running. */
JV_STATE_DONE = 12,
JV_STATE_ERROR = 12,
JV_STATE_DONE = 14 /* Must be last. */
JV_STATE_ERROR = 14 /* must be last. */
};
#undef DEBUG_JAVA_BINDING_LEVELS