diff options
author | nathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-05 16:11:53 +0000 |
---|---|---|
committer | nathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-05 16:11:53 +0000 |
commit | 8789d51c3a1eb0c83165f7e2b1698343f8d6adaf (patch) | |
tree | d2e9fdc94df1c994011ca95833f07282659dd155 /gcc/toplev.c | |
parent | c9f57216d704bf8b9af57bee4a7f8d2e82c9e450 (diff) | |
download | gcc-8789d51c3a1eb0c83165f7e2b1698343f8d6adaf.tar.gz |
* toplev.c (output_clean_symbol_name): Remove.
* toplev.h (output_clean_symbol_name): Remove.
* config/alpha/alpha.c (unicosmk_output_module_name): Use
lbasename & clean_symbol_name.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68978 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 2f83d681e46..33374679f64 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1699,22 +1699,6 @@ output_quoted_string (FILE *asm_file, const char *string) #endif } -/* Output NAME into FILE after having turned it into something - usable as an identifier in a target's assembly file. */ -void -output_clean_symbol_name (FILE *file, const char *name) -{ - /* Make a copy of NAME. */ - char *id = xstrdup (name); - - /* Make it look like a valid identifier for an assembler. */ - clean_symbol_name (id); - - fputs (id, file); - free (id); -} - - /* Output a file name in the form wanted by System V. */ void |