* gcc.c (init_gcc_specs): Fix comment.
authorTom Tromey <tromey@redhat.com>
Tue, 20 Mar 2001 00:12:07 +0000 (00:12 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Tue, 20 Mar 2001 00:12:07 +0000 (00:12 +0000)
From-SVN: r40645

gcc/ChangeLog
gcc/gcc.c

index 2050449..29edf0c 100644 (file)
@@ -1,3 +1,7 @@
+2001-03-19  Tom Tromey  <tromey@redhat.com>
+
+       * gcc.c (init_gcc_specs): Fix comment.
+
 2001-03-19  Mark Mitchell  <mark@codesourcery.com>
 
        Compute DECL_ASSEMBLER_NAME lazily.
index 967bbba..a232554 100644 (file)
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -1317,7 +1317,7 @@ init_gcc_specs (obstack, shared_name, static_name)
   /* If we see -shared-libgcc, then use the shared version.  */
   sprintf (buffer, "%%{shared-libgcc:%s}", shared_name);
   obstack_grow (obstack, buffer, strlen (buffer));
-  /* If we see -static-libgcc, then use the shared version.  */
+  /* If we see -static-libgcc, then use the static version.  */
   sprintf (buffer, "%%{static-libgcc:%s}", static_name);
   obstack_grow (obstack, buffer, strlen (buffer));
   /* Otherwise, if we see -shared, then use the shared version.  */