From: kenner Date: Sat, 26 Feb 2000 14:39:36 +0000 (+0000) Subject: * toplev.c (documented_lang_options): Correct spelling error. X-Git-Tag: upstream/4.9.2~103025 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f7e8a5e1c34d40244b389a8fdfe8320b00e4fc98;p=platform%2Fupstream%2Flinaro-gcc.git * toplev.c (documented_lang_options): Correct spelling error. (decode_d_option, decode_f_option, main): Likewise. * toplev.c (print_time): Avoid SIGFPE when all_time is zero. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32181 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2e5e1a8..53c413a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ Sat Feb 26 09:39:16 2000 Richard Kenner + * toplev.c (documented_lang_options): Correct spelling error. + (decode_d_option, decode_f_option, main): Likewise. + + * toplev.c (print_time): Avoid SIGFPE when all_time is zero. + * config/alpha/alpha.h (ASM_OUTPUT_MI_THUNK): Use .set at to tell assembler it is permitted to expand large constants. diff --git a/gcc/toplev.c b/gcc/toplev.c index 058ccfa..e25fbcd 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1115,7 +1115,7 @@ documented_lang_options[] = { "-Wno-sign-compare", "" }, { "-Wfloat-equal", "Warn about testing equality of floating point numbers" }, { "-Wno-float-equal", "" }, - { "-Wunknown-pragmas", "Warn about unrecognised pragmas" }, + { "-Wunknown-pragmas", "Warn about unrecognized pragmas" }, { "-Wno-unknown-pragmas", "" }, { "-Wstrict-prototypes", "Warn about non-prototyped function decls" }, { "-Wno-strict-prototypes", "" }, @@ -1425,7 +1425,7 @@ print_time (str, total) fprintf (stderr, "time in %s: %d.%06d (%.0f%%)\n", str, total / 1000000, total % 1000000, - (double)total / (double)all_time * 100.0); + all_time == 0 ? 0.00 : (double) total / (double) all_time * 100.0); } /* This is the default decl_printable_name function. */ @@ -4103,7 +4103,7 @@ decode_d_option (arg) case 'I': break; default: - warning ("unrecognised gcc debugging option: %c", arg[-1]); + warning ("unrecognized gcc debugging option: %c", arg[-1]); break; } } @@ -4179,7 +4179,7 @@ decode_f_option (arg) stack_limit_rtx = NULL_RTX; else if (!strcmp (arg, "preprocessed")) /* Recognise this switch but do nothing. This prevents warnings - about an unrecognised switch if cpplib has not been linked in. */ + about an unrecognized switch if cpplib has not been linked in. */ ; else return 0; @@ -4758,7 +4758,7 @@ main (argc, argv) } } else - error ("Unrecognised option `%s'", argv[i]); + error ("Unrecognized option `%s'", argv[i]); i++; }