From: Cesar Philippidis Date: Thu, 13 Mar 2014 09:50:26 +0000 (-0700) Subject: lto-wrapper.c (maybe_unlink_file): Suppress diagnostic messages. X-Git-Tag: releases/gcc-4.9.0~469 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eba14fca8919a408f95fadf383f8c87fb79e797c;p=thirdparty%2Fgcc.git 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 --- 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); }