From: Tom Tromey Date: Tue, 20 Mar 2001 00:12:07 +0000 (+0000) Subject: * gcc.c (init_gcc_specs): Fix comment. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d60726dac1d46570586bf8a2986287de97661d6b;p=gcc.git * gcc.c (init_gcc_specs): Fix comment. From-SVN: r40645 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 20504499974..29edf0c5dfc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-03-19 Tom Tromey + + * gcc.c (init_gcc_specs): Fix comment. + 2001-03-19 Mark Mitchell Compute DECL_ASSEMBLER_NAME lazily. diff --git a/gcc/gcc.c b/gcc/gcc.c index 967bbba1e7a..a232554db82 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. */