1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Don't try to generate crash diagnostics if we had an I/O failure. It's very

likely the crash diagnostics generation will fail as well.
Part of rdar://13296693

llvm-svn: 178163
This commit is contained in:
Chad Rosier 2013-03-27 18:30:00 +00:00
parent 9bc39054c8
commit b4de63a155

View File

@ -517,7 +517,7 @@ raw_fd_ostream::~raw_fd_ostream() {
// has_error() and clear the error flag with clear_error() before
// destructing raw_ostream objects which may have errors.
if (has_error())
report_fatal_error("IO failure on output stream.");
report_fatal_error("IO failure on output stream.", /*GenCrashDiag=*/false);
}