aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/class.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@versicolor.rutgers.edu>2000-01-21 20:57:00 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2000-01-21 20:57:00 +0000
commitdf32d2ce42d7607e7f189bab047762bb16d8d2c8 (patch)
treee8ac15eb4e2b1725da0aa68199c3eb0515ab1a7b /gcc/java/class.c
parent7652adb5c699caf28e8139289e6cd8a2f203c0f8 (diff)
downloadgcc-df32d2ce42d7607e7f189bab047762bb16d8d2c8.zip
gcc-df32d2ce42d7607e7f189bab047762bb16d8d2c8.tar.gz
gcc-df32d2ce42d7607e7f189bab047762bb16d8d2c8.tar.bz2
buffer.h: PROTO -> PARAMS.
* buffer.h: PROTO -> PARAMS. * check-init.c: Likewise. * class.c: Likewise. * constants.c: Likewise. * convert.h: Likewise. * decl.c: Likewise. * except.c: Likewise. * expr.c: Likewise. * gjavah.c: Likewise. * java-except.h: Likewise. * java-tree.h: Likewise. * jcf-depend.c: Likewise. * jcf-dump.c: Likewise. * jcf-parse.c: Likewise. * jcf-path.c: Likewise. * jcf-reader.c: Likewise. * jcf-write.c: Likewise. * jcf.h: Likewise. * jv-scan.c: Likewise. * jvgenmain.c: Likewise. * jvspec.c: Likewise. * lang.c: Likewise. * lex.c: Likewise. * lex.h: Likewise. * parse-scan.y: Likewise. * parse.h: Likewise. * parse.y: Likewise. * typeck.c: Likewise. * verify.c: Likewise. * xref.c: Likewise. * xref.h: Likewise. * zextract.c: Likewise. * zipfile.h: Likewise. From-SVN: r31550
Diffstat (limited to 'gcc/java/class.c')
-rw-r--r--gcc/java/class.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/gcc/java/class.c b/gcc/java/class.c
index 3e3cfe6..a441040 100644
--- a/gcc/java/class.c
+++ b/gcc/java/class.c
@@ -1,5 +1,5 @@
/* Functions related to building classes and their related objects.
- Copyright (C) 1996, 97-98, 1999 Free Software Foundation, Inc.
+ Copyright (C) 1996, 97-99, 2000 Free Software Foundation, Inc.
This file is part of GNU CC.
@@ -36,18 +36,18 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */
#include "output.h"
#include "parse.h"
-static tree mangle_class_field PROTO ((tree class));
-static tree make_method_value PROTO ((tree));
-static tree build_java_method_type PROTO ((tree, tree, int));
-static int32 hashUtf8String PROTO ((const char *, int));
-static tree make_field_value PROTO ((tree));
-static tree get_dispatch_vector PROTO ((tree));
-static tree get_dispatch_table PROTO ((tree, tree));
-static void append_gpp_mangled_type PROTO ((struct obstack *, tree));
-static tree mangle_static_field PROTO ((tree));
-static void add_interface_do PROTO ((tree, tree, int));
-static tree maybe_layout_super_class PROTO ((tree, tree));
-static int assume_compiled PROTO ((const char *));
+static tree mangle_class_field PARAMS ((tree class));
+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 append_gpp_mangled_type PARAMS ((struct obstack *, tree));
+static tree mangle_static_field PARAMS ((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 rtx registerClass_libfunc;
@@ -77,7 +77,7 @@ typedef struct assume_compiled_node_struct
} assume_compiled_node;
static assume_compiled_node *find_assume_compiled_node
- PROTO ((assume_compiled_node *, const char *));
+ PARAMS ((assume_compiled_node *, const char *));
/* This is the root of the include/exclude tree. */
@@ -1892,7 +1892,7 @@ register_class ()
void
emit_register_classes ()
{
- extern tree get_file_function_name PROTO((int));
+ extern tree get_file_function_name PARAMS ((int));
tree init_name = get_file_function_name ('I');
tree init_type = build_function_type (void_type_node, end_params_node);
tree init_decl;