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/jcf-dump.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/jcf-dump.c')
-rw-r--r-- | gcc/java/jcf-dump.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/gcc/java/jcf-dump.c b/gcc/java/jcf-dump.c index afe472f..e780b84 100644 --- a/gcc/java/jcf-dump.c +++ b/gcc/java/jcf-dump.c @@ -91,21 +91,21 @@ int class_access_flags = 0; /* Print in format similar to javap. VERY IMCOMPLETE. */ int flag_javap_compatible = 0; -static void print_access_flags PARAMS ((FILE *, uint16, char)); -static void print_constant_terse PARAMS ((FILE*, JCF*, int, int)); -static void print_constant PARAMS ((FILE *, JCF *, int, int)); -static void print_constant_ref PARAMS ((FILE *, JCF *, int)); -static void disassemble_method PARAMS ((JCF*, const unsigned char *, int)); -static void print_name PARAMS ((FILE*, JCF*, int)); -static void print_signature PARAMS ((FILE*, JCF*, int, int)); -static int utf8_equal_string PARAMS ((struct JCF*, int, const char *)); -static void usage PARAMS ((void)) ATTRIBUTE_NORETURN; -static void help PARAMS ((void)) ATTRIBUTE_NORETURN; -static void version PARAMS ((void)) ATTRIBUTE_NORETURN; -static void process_class PARAMS ((struct JCF *)); -static void print_constant_pool PARAMS ((struct JCF *)); -static void print_exception_table PARAMS ((struct JCF *, - const unsigned char *entries, int)); +static void print_access_flags (FILE *, uint16, char); +static void print_constant_terse (FILE*, JCF*, int, int); +static void print_constant (FILE *, JCF *, int, int); +static void print_constant_ref (FILE *, JCF *, int); +static void disassemble_method (JCF*, const unsigned char *, int); +static void print_name (FILE*, JCF*, int); +static void print_signature (FILE*, JCF*, int, int); +static int utf8_equal_string (struct JCF*, int, const char *); +static void usage (void) ATTRIBUTE_NORETURN; +static void help (void) ATTRIBUTE_NORETURN; +static void version (void) ATTRIBUTE_NORETURN; +static void process_class (struct JCF *); +static void print_constant_pool (struct JCF *); +static void print_exception_table (struct JCF *, const unsigned char *entries, + int); #define PRINT_SIGNATURE_RESULT_ONLY 1 #define PRINT_SIGNATURE_ARGS_ONLY 2 |