diff mbox

[obv] Make lto1 verbose a little prettier

Message ID 4C9E0DF8.9090001@codesourcery.com
State New
Headers show

Commit Message

Jie Zhang Sept. 25, 2010, 2:58 p.m. UTC
This patch inserts a newline between "Reading command line options:" and 
"Reading object files:". So the verbose output of lto1 is a little 
prettier, from

Reading command line options: abs-1.x7.ltrans0.oReading object files: 
abs-1.x7.ltrans0.o

to

Reading command line options: abs-1.x7.ltrans0.o
Reading object files: abs-1.x7.ltrans0.o

Committed as obvious.


Regards,
diff mbox

Patch


	* lto.c (lto_read_all_file_options): Start a new line after
	printing out file names.

Index: lto.c
===================================================================
--- lto.c	(revision 164619)
+++ lto.c	(working copy)
@@ -1689,6 +1689,9 @@  lto_read_all_file_options (void)
       free (file_data);
     }
 
+  if (!quiet_flag)
+    fprintf (stderr, "\n");
+
   /* Apply globally the options read from all the files.  */
   lto_reissue_options ();
 }