* toplev.c (output_clean_symbol_name): Fix another thinko.

From-SVN: r53871
This commit is contained in:
Gabriel Dos Reis 2002-05-25 18:02:14 +00:00 committed by Gabriel Dos Reis
parent fb2c68414e
commit ce9e3a6d50
2 changed files with 5 additions and 1 deletions

View 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

View 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);
}