aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCesar Philippidis <cesar@codesourcery.com>2014-03-13 02:50:26 -0700
committerRichard Biener <rguenth@gcc.gnu.org>2014-03-13 09:50:26 +0000
commiteba14fca8919a408f95fadf383f8c87fb79e797c (patch)
tree6177fa2ab73d56b0b192d2894a663ac9d5d4863f
parent11a860e30d5dc58b7ec258df9f79ab308e92b270 (diff)
downloadgcc-eba14fca8919a408f95fadf383f8c87fb79e797c.zip
gcc-eba14fca8919a408f95fadf383f8c87fb79e797c.tar.gz
gcc-eba14fca8919a408f95fadf383f8c87fb79e797c.tar.bz2
lto-wrapper.c (maybe_unlink_file): Suppress diagnostic messages.
2014-03-13 Cesar Philippidis <cesar@codesourcery.com> * lto-wrapper.c (maybe_unlink_file): Suppress diagnostic messages. From-SVN: r208537
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/lto-wrapper.c2
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);
}