diff options
author | Chad Rosier <mcrosier@apple.com> | 2013-03-27 18:28:23 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2013-03-27 18:28:23 +0000 |
commit | 9083628fec737679eb95abe8e2e5e23717a96e18 (patch) | |
tree | 9232d6532da19b88d7cce241bcf8257faf040d47 /tools/driver/cc1_main.cpp | |
parent | b061720ddf88b4a1934dbbb1b874a424716cd7d7 (diff) |
Update the error handing static functions for r178161.
Part of rdar://13296693
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@178162 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/driver/cc1_main.cpp')
-rw-r--r-- | tools/driver/cc1_main.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/driver/cc1_main.cpp b/tools/driver/cc1_main.cpp index f54c87898c..35cf5b8735 100644 --- a/tools/driver/cc1_main.cpp +++ b/tools/driver/cc1_main.cpp @@ -39,7 +39,8 @@ using namespace clang; // Main driver //===----------------------------------------------------------------------===// -static void LLVMErrorHandler(void *UserData, const std::string &Message) { +static void LLVMErrorHandler(void *UserData, const std::string &Message, + bool GenCrashDiag) { DiagnosticsEngine &Diags = *static_cast<DiagnosticsEngine*>(UserData); Diags.Report(diag::err_fe_error_backend) << Message; @@ -49,9 +50,9 @@ static void LLVMErrorHandler(void *UserData, const std::string &Message) { llvm::sys::RunInterruptHandlers(); // We cannot recover from llvm errors. When reporting a fatal error, exit - // with status 70. For BSD systems this is defined as an internal software - // error. This notifies the driver to report diagnostics information. - exit(70); + // with status 70 to generate crash diagnostics. For BSD systems this is + // defined as an internal software error. Otherwise, exit with status 1. + exit(GenCrashDiag ? 70 : 1); } int cc1_main(const char **ArgBegin, const char **ArgEnd, |