OSDN Git Service

* Use "because" instead of since in error messages.
authordje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 20 Oct 2000 20:23:11 +0000 (20:23 +0000)
committerdje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 20 Oct 2000 20:23:11 +0000 (20:23 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36977 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/cp/ChangeLog
gcc/cp/typeck2.c
gcc/gcc.c

index c98116c..3fdb62f 100644 (file)
@@ -1,3 +1,8 @@
+2000-10-20  David Edelsohn  <edelsohn@gnu.org>
+
+       * gcc.c (process_command, main): Use "because" instead of
+       "since" in error messages.
+
 Fri Oct 20 13:33:16 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
 
        * stor-layout.c (compute_record_mode): Use tree_low_cst.
index 3c2e244..b573096 100644 (file)
@@ -1,3 +1,8 @@
+2000-10-20  David Edelsohn  <edelsohn@gnu.org>
+
+       * typeck2.c (abstract_virtuals_error): Use "because" instead of
+       "since" in error message.
+
 Fri Oct 20 13:54:59 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
 
        * typeck.c (dubious_conversion_warning): Suppress if TYPE_IS_SIZETYPE.
index a17ae24..9141c6f 100644 (file)
@@ -168,7 +168,7 @@ abstract_virtuals_error (decl, type)
     {
       TREE_PURPOSE (u) = error_mark_node;
 
-      error ("  since the following virtual functions are abstract:");
+      error ("  because the following virtual functions are abstract:");
       for (tu = u; tu; tu = TREE_CHAIN (tu))
        cp_error_at ("\t%#D", TREE_VALUE (tu));
     }
index af01348..ebe4741 100644 (file)
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -3595,11 +3595,11 @@ process_command (argc, argv)
        {
          /* -save-temps overrides -pipe, so that temp files are produced */
          if (save_temps_flag)
-           error ("Warning: -pipe ignored since -save-temps specified");
+           error ("Warning: -pipe ignored because -save-temps specified");
           /* -time overrides -pipe because we can't get correct stats when
             multiple children are running at once.  */
          else if (report_times)
-           error ("Warning: -pipe ignored since -time specified");
+           error ("Warning: -pipe ignored because -time specified");
        }
       else if (argv[i][0] == '-' && argv[i][1] != 0)
        {
@@ -5636,7 +5636,7 @@ main (argc, argv)
   if (! linker_was_run && error_count == 0)
     for (i = 0; (int) i < n_infiles; i++)
       if (explicit_link_files[i])
-       error ("%s: linker input file unused since linking not done",
+       error ("%s: linker input file unused because linking not done",
               outfiles[i]);
 
   /* Delete some or all of the temporary files we made.  */