diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/lto-wrapper.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1982a7b..a32702a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2014-03-13 Cesar Philippidis <cesar@codesourcery.com> + + * lto-wrapper.c (maybe_unlink_file): Suppress diagnostic + messages. + 2014-03-13 Jakub Jelinek <jakub@redhat.com> PR tree-optimization/59025 diff --git a/gcc/lto-wrapper.c b/gcc/lto-wrapper.c index eb5611b..8e9a566 100644 --- a/gcc/lto-wrapper.c +++ b/gcc/lto-wrapper.c @@ -246,7 +246,7 @@ maybe_unlink_file (const char *file) && errno != ENOENT) fatal_perror ("deleting LTRANS file %s", file); } - else + else if (verbose) fprintf (stderr, "[Leaving LTRANS %s]\n", file); } |