From eba14fca8919a408f95fadf383f8c87fb79e797c Mon Sep 17 00:00:00 2001 From: Cesar Philippidis Date: Thu, 13 Mar 2014 02:50:26 -0700 Subject: [PATCH] lto-wrapper.c (maybe_unlink_file): Suppress diagnostic messages. 2014-03-13 Cesar Philippidis * lto-wrapper.c (maybe_unlink_file): Suppress diagnostic messages. From-SVN: r208537 --- gcc/ChangeLog | 5 +++++ gcc/lto-wrapper.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1982a7b7853a..a32702af42aa 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2014-03-13 Cesar Philippidis + + * lto-wrapper.c (maybe_unlink_file): Suppress diagnostic + messages. + 2014-03-13 Jakub Jelinek PR tree-optimization/59025 diff --git a/gcc/lto-wrapper.c b/gcc/lto-wrapper.c index eb5611bc2244..8e9a566713c9 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); } -- 2.47.2