aboutsummaryrefslogtreecommitdiff
path: root/gcc/java
diff options
context:
space:
mode:
authorKelley Cook <kelleycook@wideopenwest.com>2003-10-05 02:52:33 +0000
committerR. Kelley Cook <kcook@gcc.gnu.org>2003-10-05 02:52:33 +0000
commit35222de242df6eb8698fda53c711915914639f68 (patch)
treee516154ce364b9369cda43f15cb17b6f1187ebb5 /gcc/java
parent790ca6641b98da56819b89ed36c46179e5897f3f (diff)
downloadgcc-35222de242df6eb8698fda53c711915914639f68.zip
gcc-35222de242df6eb8698fda53c711915914639f68.tar.gz
gcc-35222de242df6eb8698fda53c711915914639f68.tar.bz2
* builtins.c, jcf.h, jvspec.c: Remove PARAMS macros.
From-SVN: r72107
Diffstat (limited to 'gcc/java')
-rw-r--r--gcc/java/ChangeLog4
-rw-r--r--gcc/java/builtins.c2
-rw-r--r--gcc/java/jcf.h2
-rw-r--r--gcc/java/jvspec.c4
4 files changed, 8 insertions, 4 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog
index 32ca4b3..de65c5a 100644
--- a/gcc/java/ChangeLog
+++ b/gcc/java/ChangeLog
@@ -1,3 +1,7 @@
+2003-10-03 Kelley Cook <kelleycook@wideopenwest.com>
+
+ * builtins.c, jcf.h, jvspec.c: Remove PARAMS macros.
+
2003-10-01 Andrew Haley <aph@redhat.com>
* jcf-parse.c (java_parse_file): Write otable and atable.
diff --git a/gcc/java/builtins.c b/gcc/java/builtins.c
index 59cdea7..65fb3e2 100644
--- a/gcc/java/builtins.c
+++ b/gcc/java/builtins.c
@@ -50,7 +50,7 @@ static void define_builtin (enum built_in_function, const char *,
function should either return an expression, if the call is to be
inlined, or NULL_TREE if a real call should be emitted. Arguments
are method return type and arguments to call. */
-typedef tree builtin_creator_function PARAMS ((tree, tree));
+typedef tree builtin_creator_function (tree, tree);
/* Hold a char*, before initialization, or a tree, after
initialization. */
diff --git a/gcc/java/jcf.h b/gcc/java/jcf.h
index 5b97fec..b7a6f38 100644
--- a/gcc/java/jcf.h
+++ b/gcc/java/jcf.h
@@ -73,7 +73,7 @@ jcf_open_exact_case (const char* filename, int oflag);
#endif /* WIN32 */
struct JCF;
-typedef int (*jcf_filbuf_t) PARAMS ((struct JCF*, int needed));
+typedef int (*jcf_filbuf_t) (struct JCF*, int needed);
union cpool_entry GTY(()) {
jword GTY ((tag ("0"))) w;
diff --git a/gcc/java/jvspec.c b/gcc/java/jvspec.c
index 575d941..83bf281 100644
--- a/gcc/java/jvspec.c
+++ b/gcc/java/jvspec.c
@@ -48,8 +48,8 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */
/* True if this arg is a resource file. */
#define RESOURCE_FILE_ARG (1<<7)
-static char *find_spec_file PARAMS ((const char *));
-static int verify_class_name PARAMS ((const char *));
+static char *find_spec_file (const char *);
+static int verify_class_name (const char *);
static const char *main_class_name = NULL;
int lang_specific_extra_outfiles = 0;