* m88k/m88k.c (output_file_start): Delete option output support.
authorDoug Evans <dje@gnu.org>
Fri, 17 May 1996 16:15:54 +0000 (16:15 +0000)
committerDoug Evans <dje@gnu.org>
Fri, 17 May 1996 16:15:54 +0000 (16:15 +0000)
From-SVN: r11994

gcc/config/m88k/m88k.c

index fee0a67d3781bf4d0fe45cea927acc8f09df28c5..b3138376b660e8a491f2963fad430e5d9eda0323 100644 (file)
@@ -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
     }
 }
 \f