diff options
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Support/raw_ostream.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/raw_ostream.cpp b/llvm/lib/Support/raw_ostream.cpp index da26a371a76..a433088b193 100644 --- a/llvm/lib/Support/raw_ostream.cpp +++ b/llvm/lib/Support/raw_ostream.cpp @@ -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);  }  | 

