diff --git a/gcc/lto/ChangeLog b/gcc/lto/ChangeLog
index ec853a9b9e6657ef87707067e5ce04c75b71cbfa..7aa054ce2a2144ec564f997ba03fd3912368c438 100644
--- a/gcc/lto/ChangeLog
+++ b/gcc/lto/ChangeLog
@@ -1,3 +1,8 @@
+2010-09-25  Jie Zhang  <jie@codesourcery.com>
+
+	* lto.c (lto_read_all_file_options): Start a new line after
+	printing out file names.
+
 2010-09-24  Jan Hubicka  <jh@suse.cz>
 
 	* lto.c (lto_promote_cross_file_statics): Use const_value_known_p.
diff --git a/gcc/lto/lto.c b/gcc/lto/lto.c
index f52c66e6a475d1bd0d5008e9f361364ca933af23..e2fa97576ebaec03c35b0c44e14686fd367f8b42 100644
--- a/gcc/lto/lto.c
+++ b/gcc/lto/lto.c
@@ -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 ();
 }