Commit d60726da by Tom Tromey Committed by Tom Tromey

* gcc.c (init_gcc_specs): Fix comment.

From-SVN: r40645
parent 92643fea
2001-03-19 Tom Tromey <tromey@redhat.com>
* gcc.c (init_gcc_specs): Fix comment.
2001-03-19 Mark Mitchell <mark@codesourcery.com> 2001-03-19 Mark Mitchell <mark@codesourcery.com>
Compute DECL_ASSEMBLER_NAME lazily. Compute DECL_ASSEMBLER_NAME lazily.
......
...@@ -1317,7 +1317,7 @@ init_gcc_specs (obstack, shared_name, static_name) ...@@ -1317,7 +1317,7 @@ init_gcc_specs (obstack, shared_name, static_name)
/* If we see -shared-libgcc, then use the shared version. */ /* If we see -shared-libgcc, then use the shared version. */
sprintf (buffer, "%%{shared-libgcc:%s}", shared_name); sprintf (buffer, "%%{shared-libgcc:%s}", shared_name);
obstack_grow (obstack, buffer, strlen (buffer)); 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); sprintf (buffer, "%%{static-libgcc:%s}", static_name);
obstack_grow (obstack, buffer, strlen (buffer)); obstack_grow (obstack, buffer, strlen (buffer));
/* Otherwise, if we see -shared, then use the shared version. */ /* Otherwise, if we see -shared, then use the shared version. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment