From: gdr Date: Sat, 25 May 2002 18:02:14 +0000 (+0000) Subject: * toplev.c (output_clean_symbol_name): Fix another thinko. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ac909de7898fb07d5ec7283a78cb1b19aa01f49c;p=thirdparty%2Fgcc.git * toplev.c (output_clean_symbol_name): Fix another thinko. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53871 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8c83eb61cc25..124c7e50fabc 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 c12675e9895f..ccbb4bc08a5b 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); }