diff options
Diffstat (limited to 'gcc')
-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. */ |