aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/toplev.c10
2 files changed, 10 insertions, 5 deletions
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 <kenner@vlsi1.ultra.nyu.edu>
+ * 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++;
}