]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* toplev.c (output_clean_symbol_name): Fix another thinko.
authorgdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 25 May 2002 18:02:14 +0000 (18:02 +0000)
committergdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 25 May 2002 18:02:14 +0000 (18:02 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53871 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/toplev.c

index 8c83eb61cc250a4ba45fa9931dd1844ddd43c4e3..124c7e50fabcef3cd42d6b641443be42bf3bde43 100644 (file)
@@ -1,3 +1,7 @@
+2002-05-25  Gabriel Dos Reis  <gdr@codesourcery.com>
+
+       * toplev.c (output_clean_symbol_name): Fix another thinko.  Gosh.
+
 2002-05-25  Roger Sayle  <roger@eyesopen.com>
 
        * simplify-rtx.c (simplify_gen_relational): Simplify the RTX
index c12675e9895f77548969eaa7637374968f83a184..ccbb4bc08a5b557e871121299ec565d150cf8131 100644 (file)
@@ -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);
 }