]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
lto-wrapper.c (maybe_unlink_file): Suppress diagnostic messages.
authorCesar Philippidis <cesar@codesourcery.com>
Thu, 13 Mar 2014 09:50:26 +0000 (02:50 -0700)
committerRichard Biener <rguenth@gcc.gnu.org>
Thu, 13 Mar 2014 09:50:26 +0000 (09:50 +0000)
2014-03-13  Cesar Philippidis  <cesar@codesourcery.com>

* lto-wrapper.c (maybe_unlink_file): Suppress diagnostic
messages.

From-SVN: r208537

gcc/ChangeLog
gcc/lto-wrapper.c

index 1982a7b7853a162124852a66c8ec06d90c86af78..a32702af42aaf226acc3ed6cf6937c6130091281 100644 (file)
@@ -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
index eb5611bc22449ad7f352ff19dcd3910ec69c6ea9..8e9a566713c9ec50183d24c369b914f669866adf 100644 (file)
@@ -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);
 }