This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Patch: trivial comment fix in gcc.c
- To: Gcc Patch List <gcc-patches at gcc dot gnu dot org>
- Subject: Patch: trivial comment fix in gcc.c
- From: Tom Tromey <tromey at redhat dot com>
- Date: 19 Mar 2001 17:10:20 -0700
- Reply-To: tromey at redhat dot com
I'm checking this in as an obvious bug fix.
I'm putting it on the trunk and the branch.
2001-03-19 Tom Tromey <tromey@redhat.com>
* gcc.c (init_gcc_specs): Fix comment.
Tom
Index: gcc.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/gcc.c,v
retrieving revision 1.205.2.6
diff -u -r1.205.2.6 gcc.c
--- gcc.c 2001/03/17 19:56:09 1.205.2.6
+++ gcc.c 2001/03/20 00:01:10
@@ -1274,7 +1274,7 @@
/* 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. */