diff options
author | Tom Tromey <tromey@redhat.com> | 2005-06-15 19:11:43 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2005-06-15 19:11:43 +0000 |
commit | fbb4c46b2d6b1cb70f05c25e01462d90282aece5 (patch) | |
tree | d75a57626d585261ba5d3eae3b74954aa5b37586 /libjava/ChangeLog | |
parent | 92b5fbc5aebba9d16fb3247ad0b77020132a2427 (diff) | |
download | gcc-fbb4c46b2d6b1cb70f05c25e01462d90282aece5.zip gcc-fbb4c46b2d6b1cb70f05c25e01462d90282aece5.tar.gz gcc-fbb4c46b2d6b1cb70f05c25e01462d90282aece5.tar.bz2 |
re PR libgcj/21906 (hang when invoking abstract method)
gcc/java/:
PR libgcj/21906:
* class.c (make_method_value): Use soft_abstractmethod_node for
abstract method.
* java-tree.h (soft_abstractmethod_node): New define.
(JTI_SOFT_ABSTRACTMETHOD_NODE): New enum constant.
* decl.c (java_init_decl_processing): Initialize
soft_abstractmethod_node.
libjava/:
PR libgcj/21906:
* defineclass.cc (handleMethodsEnd): Set ncode for abstract
methods.
* include/jvm.h (_Jv_ThrowAbstractMethodError): Declare.
* link.cc (_Jv_ThrowAbstractMethodError): Renamed. No longer
static.
(append_partial_itable): Use it.
(set_vtable_entries): Likewise.
From-SVN: r100992
Diffstat (limited to 'libjava/ChangeLog')
-rw-r--r-- | libjava/ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index b832616..813eef1 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,5 +1,16 @@ 2005-06-15 Tom Tromey <tromey@redhat.com> + PR libgcj/21906: + * defineclass.cc (handleMethodsEnd): Set ncode for abstract + methods. + * include/jvm.h (_Jv_ThrowAbstractMethodError): Declare. + * link.cc (_Jv_ThrowAbstractMethodError): Renamed. No longer + static. + (append_partial_itable): Use it. + (set_vtable_entries): Likewise. + +2005-06-15 Tom Tromey <tromey@redhat.com> + * gnu/gcj/runtime/SystemClassLoader.java (init): Clear last_was_sep in loop. |