diff options
Diffstat (limited to 'gcc/java')
-rw-r--r-- | gcc/java/ChangeLog | 17 | ||||
-rw-r--r-- | gcc/java/gjavah.c | 2 | ||||
-rw-r--r-- | gcc/java/jcf-dump.c | 2 | ||||
-rw-r--r-- | gcc/java/jv-scan.c | 2 |
4 files changed, 14 insertions, 9 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index f67cea3..6c904ea 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,11 +1,16 @@ +2002-10-08 Zack Weinberg <zack@codesourcery.com> + + * gjavah.c, jcf-dump.c, jv-scan.c: Globally replace GCCBUGURL with + bug_report_url. + 2002-10-08 Andrew Haley <aph@redhat.com> * parse.y (attach_init_test_initialization_flags): Check for error_mark_node. -2002-10-07 Anthony Green <green@redhat.com> +2002-10-07 Anthony Green <green@redhat.com> - * parse.y (merge_string_cste): Fix bug in string concatenation. + * parse.y (merge_string_cste): Fix bug in string concatenation. 2002-10-03 Michael Koch <konqueror@gmx.de> @@ -50,7 +55,7 @@ 2002-09-21 Richard Henderson <rth@redhat.com> - * jcf-parse.c (get_constant): Decode from IEEE no matter + * jcf-parse.c (get_constant): Decode from IEEE no matter what the target format. 2002-09-20 Kazu Hirata <kazu@cs.umass.edu> @@ -173,7 +178,7 @@ 2002-08-08 Bryce McKinlay <bryce@waitaki.otago.ac.nz> - * jcf-write.c (get_access_flags): Return correct access flags for + * jcf-write.c (get_access_flags): Return correct access flags for private and protected inner classes. 2002-08-08 Nathan Sidwell <nathan@codesourcery.com> @@ -316,10 +321,10 @@ 2002-06-10 Bryce McKinlay <bryce@waitaki.otago.ac.nz> - * gjavah.c (throwable_p): Accept argument as either a classname or + * gjavah.c (throwable_p): Accept argument as either a classname or signature fragment. Create null-terminated classname string for super when calling itself recursively. - (decode_signature_piece): Skip first character from class name + (decode_signature_piece): Skip first character from class name signature when calling throwable_p. 2002-06-08 H.J. Lu (hjl@gnu.org) diff --git a/gcc/java/gjavah.c b/gcc/java/gjavah.c index d168840..53099ad 100644 --- a/gcc/java/gjavah.c +++ b/gcc/java/gjavah.c @@ -2289,7 +2289,7 @@ help () /* We omit -MG until it is implemented. */ printf ("\n"); printf ("For bug reporting instructions, please see:\n"); - printf ("%s.\n", GCCBUGURL); + printf ("%s.\n", bug_report_url); exit (0); } diff --git a/gcc/java/jcf-dump.c b/gcc/java/jcf-dump.c index 2824a6b..72f1a53 100644 --- a/gcc/java/jcf-dump.c +++ b/gcc/java/jcf-dump.c @@ -829,7 +829,7 @@ help () printf (" -v, --verbose Print extra information while running\n"); printf ("\n"); printf ("For bug reporting instructions, please see:\n"); - printf ("%s.\n", GCCBUGURL); + printf ("%s.\n", bug_report_url); exit (0); } diff --git a/gcc/java/jv-scan.c b/gcc/java/jv-scan.c index 73eb3f4..f92aceb 100644 --- a/gcc/java/jv-scan.c +++ b/gcc/java/jv-scan.c @@ -115,7 +115,7 @@ help () printf (" --version Print version number, then exit\n"); printf ("\n"); printf ("For bug reporting instructions, please see:\n"); - printf ("%s.\n", GCCBUGURL); + printf ("%s.\n", bug_report_url); exit (0); } |