diff --git a/contrib/gcc/cccp.c b/contrib/gcc/cccp.c index 7a247542302d..69cd93d3e88b 100644 --- a/contrib/gcc/cccp.c +++ b/contrib/gcc/cccp.c @@ -3986,7 +3986,7 @@ handle_directive (ip, op) case '\'': case '\"': { - int backslash_newlines_p; + int backslash_newlines_p = 0; register U_CHAR *bp1 = skip_quoted_string (xp - 1, bp, ip->lineno, diff --git a/contrib/gcc/gcc.c b/contrib/gcc/gcc.c index 1e4550578fb5..3128db0d88de 100644 --- a/contrib/gcc/gcc.c +++ b/contrib/gcc/gcc.c @@ -5031,7 +5031,7 @@ main (argc, argv) if (! verbose_flag) { printf ("\nFor bug reporting instructions, please see:\n"); - printf (".\n"); + printf ("%s.\n", GCCBUGURL); exit (0); } @@ -5224,7 +5224,7 @@ main (argc, argv) if (print_help_list) { printf ("\nFor bug reporting instructions, please see:\n"); - printf ("\n"); + printf ("%s\n", GCCBUGURL); } exit (error_count > 0 ? (signal_count ? 2 : 1) : 0);