diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2003-01-09 23:16:56 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-01-09 23:16:56 +0000 |
commit | d2097937c57963f4bea75df2d0abe691f74de3fe (patch) | |
tree | c01acffab8cc0c484f09b1cdd4401847e024105e /gcc/java/mangle.c | |
parent | 30028c85159c12c4e8920af0a9111372e56f1636 (diff) | |
download | gcc-d2097937c57963f4bea75df2d0abe691f74de3fe.zip gcc-d2097937c57963f4bea75df2d0abe691f74de3fe.tar.gz gcc-d2097937c57963f4bea75df2d0abe691f74de3fe.tar.bz2 |
* All Files: Remove PARAMS macro.
From-SVN: r61133
Diffstat (limited to 'gcc/java/mangle.c')
-rw-r--r-- | gcc/java/mangle.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/gcc/java/mangle.c b/gcc/java/mangle.c index 2930e06..9a6b802 100644 --- a/gcc/java/mangle.c +++ b/gcc/java/mangle.c @@ -38,28 +38,28 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "obstack.h" #include "ggc.h" -static void mangle_field_decl PARAMS ((tree)); -static void mangle_method_decl PARAMS ((tree)); +static void mangle_field_decl (tree); +static void mangle_method_decl (tree); -static void mangle_type PARAMS ((tree)); -static void mangle_pointer_type PARAMS ((tree)); -static void mangle_array_type PARAMS ((tree)); -static int mangle_record_type PARAMS ((tree, int)); +static void mangle_type (tree); +static void mangle_pointer_type (tree); +static void mangle_array_type (tree); +static int mangle_record_type (tree, int); -static int find_compression_pointer_match PARAMS ((tree)); -static int find_compression_array_match PARAMS ((tree)); -static int find_compression_record_match PARAMS ((tree, tree *)); -static int find_compression_array_template_match PARAMS ((tree)); +static int find_compression_pointer_match (tree); +static int find_compression_array_match (tree); +static int find_compression_record_match (tree, tree *); +static int find_compression_array_template_match (tree); -static void set_type_package_list PARAMS ((tree)); -static int entry_match_pointer_p PARAMS ((tree, int)); -static void emit_compression_string PARAMS ((int)); +static void set_type_package_list (tree); +static int entry_match_pointer_p (tree, int); +static void emit_compression_string (int); -static void init_mangling PARAMS ((struct obstack *)); -static tree finish_mangling PARAMS ((void)); -static void compression_table_add PARAMS ((tree)); +static void init_mangling (struct obstack *); +static tree finish_mangling (void); +static void compression_table_add (tree); -static void mangle_member_name PARAMS ((tree)); +static void mangle_member_name (tree); /* We use an incoming obstack, always to be provided to the interface functions. */ |