* toplev.c (documented_lang_options): Correct spelling error.
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 26 Feb 2000 14:39:36 +0000 (14:39 +0000)
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 26 Feb 2000 14:39:36 +0000 (14:39 +0000)
(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

gcc/ChangeLog
gcc/toplev.c

index 2e5e1a8..53c413a 100644 (file)
@@ -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.
 
index 058ccfa..e25fbcd 100644 (file)
@@ -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++;
        }