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/lang.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/lang.c')
-rw-r--r-- | gcc/java/lang.c | 44 |
1 files changed, 18 insertions, 26 deletions
diff --git a/gcc/java/lang.c b/gcc/java/lang.c index 60a3845..239e82b 100644 --- a/gcc/java/lang.c +++ b/gcc/java/lang.c @@ -53,32 +53,24 @@ struct string_option const int on_value; }; -static const char *java_init PARAMS ((const char *)); -static void java_finish PARAMS ((void)); -static void java_init_options PARAMS ((void)); -static bool java_post_options PARAMS ((void)); - -static int java_decode_option PARAMS ((int, char **)); -static void put_decl_string PARAMS ((const char *, int)); -static void put_decl_node PARAMS ((tree)); -static void java_print_error_function PARAMS ((diagnostic_context *, - const char *)); -static int process_option_with_no PARAMS ((const char *, - const struct string_option *, - int)); -static tree java_tree_inlining_walk_subtrees PARAMS ((tree *, - int *, - walk_tree_fn, - void *, - void *)); -static int java_unsafe_for_reeval PARAMS ((tree)); -static int merge_init_test_initialization PARAMS ((void * *, - void *)); -static int inline_init_test_initialization PARAMS ((void * *, - void *)); -static bool java_can_use_bit_fields_p PARAMS ((void)); -static int java_dump_tree PARAMS ((void *, tree)); -static void dump_compound_expr PARAMS ((dump_info_p, tree)); +static const char *java_init (const char *); +static void java_finish (void); +static void java_init_options (void); +static bool java_post_options (void); + +static int java_decode_option (int, char **); +static void put_decl_string (const char *, int); +static void put_decl_node (tree); +static void java_print_error_function (diagnostic_context *, const char *); +static int process_option_with_no (const char *, const struct string_option *, int); +static tree java_tree_inlining_walk_subtrees (tree *, int *, walk_tree_fn, + void *, void *); +static int java_unsafe_for_reeval (tree); +static int merge_init_test_initialization (void * *, void *); +static int inline_init_test_initialization (void * *, void *); +static bool java_can_use_bit_fields_p (void); +static int java_dump_tree (void *, tree); +static void dump_compound_expr (dump_info_p, tree); #ifndef TARGET_OBJECT_SUFFIX # define TARGET_OBJECT_SUFFIX ".o" |