diff options
author | Doug Evans <dje@gnu.org> | 1996-05-17 16:23:37 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-05-17 16:23:37 +0000 |
commit | 1b279f393547f204551464e0a4fae2c4da4536aa (patch) | |
tree | dfded8628c5fde7983747df7ea3e33d95a3cdd25 /gcc | |
parent | a9ab954560915358afb0a04b1b79a6f50262ce3f (diff) | |
download | gcc-1b279f393547f204551464e0a4fae2c4da4536aa.zip gcc-1b279f393547f204551464e0a4fae2c4da4536aa.tar.gz gcc-1b279f393547f204551464e0a4fae2c4da4536aa.tar.bz2 |
rs6000.h (ASM_OUTPUT_OPTIONS): Delete.
* rs6000/rs6000.h (ASM_OUTPUT_OPTIONS): Delete.
(ASM_COMMENT_START): Define.
(ASM_FILE_START): Delete option output support.
From-SVN: r11999
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/rs6000/rs6000.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h index eccfe31..e4857c6 100644 --- a/gcc/config/rs6000/rs6000.h +++ b/gcc/config/rs6000/rs6000.h @@ -2156,11 +2156,10 @@ extern int rs6000_trunc_used; /* Control the assembler format that we output. */ -/* Common macro to output the options used to the asm file. */ -#define ASM_OUTPUT_OPTIONS(FILE) \ - output_options (FILE, \ - f_options, sizeof (f_options) / sizeof (f_options[0]), \ - W_options, sizeof (W_options) / sizeof (W_options[0])) \ +/* A C string constant describing how to begin a comment in the target + assembler language. The compiler assumes that the comment will end at + the end of the line. */ +#define ASM_COMMENT_START " #" /* Output at beginning of assembler file. @@ -2179,7 +2178,6 @@ extern int rs6000_trunc_used; #define ASM_FILE_START(FILE) \ { \ - ASM_OUTPUT_OPTIONS (FILE); \ rs6000_gen_section_name (&xcoff_bss_section_name, \ main_input_filename, ".bss_"); \ rs6000_gen_section_name (&xcoff_private_data_section_name, \ |