From 5bbcd78f356c4348490e99c50de10d24b0b7afa5 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Fri, 17 May 1996 16:15:54 +0000 Subject: [PATCH] * m88k/m88k.c (output_file_start): Delete option output support. From-SVN: r11994 --- gcc/config/m88k/m88k.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/gcc/config/m88k/m88k.c b/gcc/config/m88k/m88k.c index fee0a67d378..b3138376b66 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 } } -- 2.30.2