* toplev.c (output_clean_symbol_name): Fix another thinko.
authorGabriel Dos Reis <gdr@codesourcery.com>
Sat, 25 May 2002 18:02:14 +0000 (18:02 +0000)
committerGabriel Dos Reis <gdr@gcc.gnu.org>
Sat, 25 May 2002 18:02:14 +0000 (18:02 +0000)
From-SVN: r53871

gcc/ChangeLog
gcc/toplev.c

index 8c83eb6..124c7e5 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 c12675e..ccbb4bc 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);
 }