From: Gabriel Dos Reis Date: Sat, 25 May 2002 18:02:14 +0000 (+0000) Subject: * toplev.c (output_clean_symbol_name): Fix another thinko. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ce9e3a6d50ad5a4a3ed6631781d3cb40153957e2;p=gcc.git * toplev.c (output_clean_symbol_name): Fix another thinko. From-SVN: r53871 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8c83eb61cc2..124c7e50fab 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-05-25 Gabriel Dos Reis + + * toplev.c (output_clean_symbol_name): Fix another thinko. Gosh. + 2002-05-25 Roger Sayle * simplify-rtx.c (simplify_gen_relational): Simplify the RTX diff --git a/gcc/toplev.c b/gcc/toplev.c index c12675e9895..ccbb4bc08a5 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1724,7 +1724,7 @@ output_clean_symbol_name (file, name) /* Make it look like a valid identifier for an assembler. */ clean_symbol_name (id); - fputs (name, file); + fputs (id, file); free (id); }