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
This commit is contained in:
Cesar Philippidis 2014-03-13 02:50:26 -07:00 committed by Richard Biener
parent 11a860e30d
commit eba14fca89
2 changed files with 6 additions and 1 deletions

View 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> 2014-03-13 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/59025 PR tree-optimization/59025

View File

@ -246,7 +246,7 @@ maybe_unlink_file (const char *file)
&& errno != ENOENT) && errno != ENOENT)
fatal_perror ("deleting LTRANS file %s", file); fatal_perror ("deleting LTRANS file %s", file);
} }
else else if (verbose)
fprintf (stderr, "[Leaving LTRANS %s]\n", file); fprintf (stderr, "[Leaving LTRANS %s]\n", file);
} }