diff options
author | Per Bothner <bothner@gcc.gnu.org> | 1998-11-25 09:10:57 -0800 |
---|---|---|
committer | Per Bothner <bothner@gcc.gnu.org> | 1998-11-25 09:10:57 -0800 |
commit | de4c7b029c4a5732a4c688bfeba7b58feee18acd (patch) | |
tree | 0b2fe1790380d64ead03f86029625240ca00fbb8 /gcc/java/java-tree.h | |
parent | 0bd2e6dbbf09e94c5c1d0575b2183acea257a518 (diff) | |
download | gcc-de4c7b029c4a5732a4c688bfeba7b58feee18acd.zip gcc-de4c7b029c4a5732a4c688bfeba7b58feee18acd.tar.gz gcc-de4c7b029c4a5732a4c688bfeba7b58feee18acd.tar.bz2 |
java-tree.h (end_params_node): Declare global.
* java-tree.h (end_params_node): Declare global.
* decl.c (end_params_node): New global.
(init_decl_processing, start_java_method): Use end_params_node for
end of list of parameter types. Follows correct gcc conventions.
* expr.c (pop_argument_types, pop_arguments): Likewise.
* lang.c (put_decl_node): Likewise.
* typeck.c (various places): Likewise.
* class.y (various places): Likewise.
* parse.y (various places): Likewise.
* parse.y (java_complete_tree): Move CAN_COMPLETE_NORMALLY.
(build_jump_to_finally): Add missing CAN_COMPLETE_NORMALLY.
* class.c: Add #include flags.h, remove no-longer needed declaration.
* class.c (layout_class_method): Remove commented-out code, re-format.
Don't add vtable entry (or index) for private methods.
* expr.c (expand_invoke): A private method is implicitly final.
* class.c (make_class_data): If inlining or optimizing,
skip private methods.
* class.c (finish_class): New function. Calls existing methods,
but alls emits deferred inline functions.
* jcf-parse.c (parse_class_file): Call finish_class.
* parse.y (java_complete_expand_methods): Likewise.
* expr.c (build_java_binop): Explicit default, to silence -Wall.
From-SVN: r23871
Diffstat (limited to 'gcc/java/java-tree.h')
-rw-r--r-- | gcc/java/java-tree.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/java/java-tree.h b/gcc/java/java-tree.h index 66aae18..6d6c254 100644 --- a/gcc/java/java-tree.h +++ b/gcc/java/java-tree.h @@ -249,6 +249,8 @@ extern tree method_type_node; extern tree method_ptr_type_node; #define nativecode_ptr_type_node ptr_type_node +extern tree end_params_node; + /* References to internal libjava functions we use. */ extern tree alloc_object_node; extern tree soft_instanceof_node; |