diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-23 23:37:09 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-23 23:37:09 +0000 |
commit | 6e9573263d8cc1cea9461733bda7ea2de0f9e3f1 (patch) | |
tree | eefaec1514eb73c58eef6e91f4c09e4a714d9818 /gcc/toplev.h | |
parent | b6dc1ff7106713e625d421e499088cd48a86fbfc (diff) | |
download | gcc-6e9573263d8cc1cea9461733bda7ea2de0f9e3f1.tar.gz |
* config/i386/mingw32.h (OUTPUT_QUOTED_STRING): Properly output
quoted strings.
* dwarf2out.c (lookup_filename): Properly quote filename in .file
directive in assembly file.
* config/m68k/dpx2.h (ASM_OUTPUT_SOURCE_FILENAME): Likewise.
* config/m88k/m88k.h (ASM_OUTPUT_SOURCE_FILENAME): Likewise.
* config/pj/pj.h (ASM_FILE_START): Likewise.
* config/rs6000/xcoff.h (ASM_FILE_START): Likewise.
* config/avr/avr.c (asm_file_end): Likewise.
* toplev.c (output_quoted_string): Handle possibly signed plain
char.
* toplev.h (output_clean_symbol_name): Declare
* toplev.c (output_clean_symbol_name): Define.
* config/alpha/alpha.c (unicosmk_output_module_name): Use it.
* config/1750a/1750a.h (ASM_FILE_START): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53817 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/toplev.h')
-rw-r--r-- | gcc/toplev.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/toplev.h b/gcc/toplev.h index 04477c0a014..4be8099efe2 100644 --- a/gcc/toplev.h +++ b/gcc/toplev.h @@ -89,6 +89,7 @@ extern void warning_for_asm PARAMS ((struct rtx_def *, const char *, ...)); extern void warn_deprecated_use PARAMS ((union tree_node *)); +extern void output_clean_symbol_name PARAMS ((FILE *, const char *)); #ifdef BUFSIZ extern void output_quoted_string PARAMS ((FILE *, const char *)); extern void output_file_directive PARAMS ((FILE *, const char *)); |