diff options
Diffstat (limited to 'gcc/java/class.c')
-rw-r--r-- | gcc/java/class.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/gcc/java/class.c b/gcc/java/class.c index 0818bc21079..29a3aa7cddb 100644 --- a/gcc/java/class.c +++ b/gcc/java/class.c @@ -48,16 +48,16 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #define O_BINARY 0 /* MS-DOS brain-damage */ #endif -static tree make_method_value PARAMS ((tree)); -static tree build_java_method_type PARAMS ((tree, tree, int)); -static int32 hashUtf8String PARAMS ((const char *, int)); -static tree make_field_value PARAMS ((tree)); -static tree get_dispatch_vector PARAMS ((tree)); -static tree get_dispatch_table PARAMS ((tree, tree)); -static void add_interface_do PARAMS ((tree, tree, int)); -static tree maybe_layout_super_class PARAMS ((tree, tree)); -static int assume_compiled PARAMS ((const char *)); -static tree build_method_symbols_entry PARAMS ((tree)); +static tree make_method_value (tree); +static tree build_java_method_type (tree, tree, int); +static int32 hashUtf8String (const char *, int); +static tree make_field_value (tree); +static tree get_dispatch_vector (tree); +static tree get_dispatch_table (tree, tree); +static void add_interface_do (tree, tree, int); +static tree maybe_layout_super_class (tree, tree); +static int assume_compiled (const char *); +static tree build_method_symbols_entry (tree); static GTY(()) rtx registerClass_libfunc; static GTY(()) rtx registerResource_libfunc; @@ -86,8 +86,8 @@ typedef struct assume_compiled_node_struct struct assume_compiled_node_struct *child; } assume_compiled_node; -static assume_compiled_node *find_assume_compiled_node - PARAMS ((assume_compiled_node *, const char *)); +static assume_compiled_node *find_assume_compiled_node (assume_compiled_node *, + const char *); /* This is the root of the include/exclude tree. */ @@ -2134,7 +2134,7 @@ emit_register_classes () } else { - extern tree get_file_function_name PARAMS ((int)); + extern tree get_file_function_name (int); tree init_name = get_file_function_name ('I'); tree init_type = build_function_type (void_type_node, end_params_node); tree init_decl; @@ -2270,8 +2270,8 @@ init_class_processing () gcc_obstack_init (&temporary_obstack); } -static hashval_t java_treetreehash_hash PARAMS ((const void *)); -static int java_treetreehash_compare PARAMS ((const void *, const void *)); +static hashval_t java_treetreehash_hash (const void *); +static int java_treetreehash_compare (const void *, const void *); /* A hash table mapping trees to trees. Used generally. */ |