aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcc.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2001-03-20 00:12:07 +0000
committerTom Tromey <tromey@gcc.gnu.org>2001-03-20 00:12:07 +0000
commitd60726dac1d46570586bf8a2986287de97661d6b (patch)
treef03cce11e38b8024a712e2d766aaa5bd90827572 /gcc/gcc.c
parent92643fea9381b2d137f19d19e28e24a61dc44b0c (diff)
downloadgcc-d60726dac1d46570586bf8a2986287de97661d6b.zip
gcc-d60726dac1d46570586bf8a2986287de97661d6b.tar.gz
gcc-d60726dac1d46570586bf8a2986287de97661d6b.tar.bz2
* gcc.c (init_gcc_specs): Fix comment.
From-SVN: r40645
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r--gcc/gcc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c
index 967bbba..a232554 100644
--- 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. */