diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-03-13 09:50:26 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-03-13 09:50:26 +0000 |
commit | 472d4060bbe4b59ff8604f7e99678a671a40dd30 (patch) | |
tree | 6177fa2ab73d56b0b192d2894a663ac9d5d4863f | |
parent | 165406d5ca9203e2b075251b4ac59d2906bfa90b (diff) | |
download | gcc-472d4060bbe4b59ff8604f7e99678a671a40dd30.tar.gz |
2014-03-13 Cesar Philippidis <cesar@codesourcery.com>
* lto-wrapper.c (maybe_unlink_file): Suppress diagnostic
messages.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@208537 138bc75d-0d04-0410-961f-82ee72b054a4
-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 1982a7b7853..a32702af42a 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 eb5611bc224..8e9a566713c 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); } |