diff options
author | Tom Tromey <tromey@redhat.com> | 2001-03-20 00:12:07 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2001-03-20 00:12:07 +0000 |
commit | d60726dac1d46570586bf8a2986287de97661d6b (patch) | |
tree | f03cce11e38b8024a712e2d766aaa5bd90827572 | |
parent | 92643fea9381b2d137f19d19e28e24a61dc44b0c (diff) | |
download | gcc-d60726dac1d46570586bf8a2986287de97661d6b.zip gcc-d60726dac1d46570586bf8a2986287de97661d6b.tar.gz gcc-d60726dac1d46570586bf8a2986287de97661d6b.tar.bz2 |
* gcc.c (init_gcc_specs): Fix comment.
From-SVN: r40645
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/gcc.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2050449..29edf0c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. @@ -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. */ |