diff options
author | Doug Evans <dje@gnu.org> | 1996-05-17 16:15:54 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-05-17 16:15:54 +0000 |
commit | 5bbcd78f356c4348490e99c50de10d24b0b7afa5 (patch) | |
tree | 1c286ca8a6d34ab3a3c8c865555363581e7800bb /gcc | |
parent | 9be7a8daefc5cbed9cbb874b9a33b0288b54de9d (diff) | |
download | gcc-5bbcd78f356c4348490e99c50de10d24b0b7afa5.zip gcc-5bbcd78f356c4348490e99c50de10d24b0b7afa5.tar.gz gcc-5bbcd78f356c4348490e99c50de10d24b0b7afa5.tar.bz2 |
* m88k/m88k.c (output_file_start): Delete option output support.
From-SVN: r11994
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/m88k/m88k.c | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/gcc/config/m88k/m88k.c b/gcc/config/m88k/m88k.c index fee0a67..b313837 100644 --- a/gcc/config/m88k/m88k.c +++ b/gcc/config/m88k/m88k.c @@ -1575,10 +1575,6 @@ output_file_start (file, f_options, f_len, W_options, W_len) data_section (); ASM_COFFSEM (file); - pos = fprintf (file, "\n; cc1 (%s) arguments:", VERSION_STRING); - output_options (file, f_options, f_len, W_options, W_len, - pos, 75, " ", "\n; ", "\n\n"); - if (TARGET_IDENTIFY_REVISION) { char indent[256]; @@ -1587,8 +1583,17 @@ output_file_start (file, f_options, f_len, W_options, W_len) sprintf (indent, "]\"\n\t%s\t \"@(#)%s [", IDENT_ASM_OP, main_input_filename); fprintf (file, indent+3); pos = fprintf (file, "gcc %s, %.24s,", VERSION_STRING, ctime (&now)); +#if 1 + /* ??? It would be nice to call print_switch_values here (and thereby + let us delete output_options) but this is kept in until it is known + whether the change in content format matters. */ output_options (file, f_options, f_len, W_options, W_len, pos, 150 - strlen (indent), " ", indent, "]\"\n\n"); +#else + fprintf (file, "]\"\n"); + print_switch_values (file, 0, 150 - strlen (indent), + indent + 3, " ", "]\"\n"); +#endif } } |