diff options
author | Tom Tromey <tromey@cygnus.com> | 1998-10-22 15:52:53 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 1998-10-22 15:52:53 +0000 |
commit | f76707606ed9a8bd6b2de43536e6125c98206c2f (patch) | |
tree | 9a0adabf10fdae5847613714a607319341179df2 /gcc/java/class.c | |
parent | 86219cc76f52066bc849b7693fe0bc5ebf41503d (diff) | |
download | gcc-f76707606ed9a8bd6b2de43536e6125c98206c2f.zip gcc-f76707606ed9a8bd6b2de43536e6125c98206c2f.tar.gz gcc-f76707606ed9a8bd6b2de43536e6125c98206c2f.tar.bz2 |
java-tree.h (finalize_identifier_node): Don't declare.
* java-tree.h (finalize_identifier_node): Don't declare.
* class.c (make_class_data): Don't push "final" field.
* decl.c (init_decl_processing): Don't push "final" field.
(finalize_identifier_node): Removed.
(init_decl_processing): Don't set finalize_identifier_node.
From-SVN: r23227
Diffstat (limited to 'gcc/java/class.c')
-rw-r--r-- | gcc/java/class.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/java/class.c b/gcc/java/class.c index cca0900..eaeae41 100644 --- a/gcc/java/class.c +++ b/gcc/java/class.c @@ -1110,11 +1110,6 @@ make_class_data (type) flag_assume_compiled ? integer_four_node : integer_two_node); - method = lookup_java_method (type, - finalize_identifier_node, void_signature_node); - PUSH_FIELD_VALUE (cons, "final", - method == NULL ? integer_zero_node : integer_one_node); - PUSH_FIELD_VALUE (cons, "thread", null_pointer_node); FINISH_RECORD_CONSTRUCTOR (cons); |