diff options
author | Tom Tromey <tromey@cygnus.com> | 1998-10-30 00:35:32 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 1998-10-30 00:35:32 +0000 |
commit | 9cfceb60cded797ae431d53e30b279afb161d3c1 (patch) | |
tree | 299473034cd88f8a96a4600141440dc773f50ce1 /gcc/java/decl.c | |
parent | 8b83b2a74d04968a5cc09150acd6f442d044f91d (diff) | |
download | gcc-9cfceb60cded797ae431d53e30b279afb161d3c1.zip gcc-9cfceb60cded797ae431d53e30b279afb161d3c1.tar.gz gcc-9cfceb60cded797ae431d53e30b279afb161d3c1.tar.bz2 |
class.c (make_class_data): Renamed fields: nmethods to method_count, method_count to dtable_method_count.
* class.c (make_class_data): Renamed fields: nmethods to
method_count, method_count to dtable_method_count. Always set
`state' field to 0.
* decl.c (init_decl_processing): Likewise.
From-SVN: r23449
Diffstat (limited to 'gcc/java/decl.c')
-rw-r--r-- | gcc/java/decl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/decl.c b/gcc/java/decl.c index a49f22b..6c44d15 100644 --- a/gcc/java/decl.c +++ b/gcc/java/decl.c @@ -589,8 +589,8 @@ init_decl_processing () PUSH_FIELD (class_type_node, field, "superclass", class_ptr_type); PUSH_FIELD (class_type_node, field, "constants", constants_type_node); PUSH_FIELD (class_type_node, field, "methods", method_ptr_type_node); - PUSH_FIELD (class_type_node, field, "nmethods", short_type_node); PUSH_FIELD (class_type_node, field, "method_count", short_type_node); + PUSH_FIELD (class_type_node, field, "dtable_method_count", short_type_node); PUSH_FIELD (class_type_node, field, "fields", field_ptr_type_node); PUSH_FIELD (class_type_node, field, "size_in_bytes", int_type_node); PUSH_FIELD (class_type_node, field, "field_count", short_type_node); |