diff options
-rw-r--r-- | gcc/lto/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/lto/lto.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/lto/ChangeLog b/gcc/lto/ChangeLog index ec853a9..7aa054c 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 f52c66e..e2fa975 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 (); } |