]> gcc.gnu.org Git - gcc.git/blobdiff - gcc/dwarf2out.c
mot3300.h (ASM_OUTPUT_ALIGN): Accept any alignment instead of aborting.
[gcc.git] / gcc / dwarf2out.c
index 7667a53a3a5e39641743fc7e6fdc60931090def9..a107937265734f3c7c8fde768061718501a3dd94 100644 (file)
@@ -1493,6 +1493,11 @@ output_call_frame_info (for_eh)
     return;
 
   fputc ('\n', asm_out_file);
+
+  /* We're going to be generating comments, so turn on app.  */
+  if (flag_verbose_asm)
+    app_enable ();
+
   if (for_eh)
     {
 #ifdef EH_FRAME_SECTION
@@ -1648,6 +1653,10 @@ output_call_frame_info (for_eh)
      get a value of 0.  Putting .align 0 after the label fixes it.  */
   ASM_OUTPUT_ALIGN (asm_out_file, 0);
 #endif
+
+  /* Turn off app to make assembly quicker.  */
+  if (flag_verbose_asm)
+    app_disable ();
 }
 
 /* Output a marker (i.e. a label) for the beginning of a function, before
This page took 0.027221 seconds and 5 git commands to generate.