From 2b2b38d336b209cd43f7326f7a9f0d168fc21c27 Mon Sep 17 00:00:00 2001 From: Chad Rosier Date: Mon, 12 Nov 2012 21:32:44 +0000 Subject: Revert r167620; this can be implemented using an existing CL option. llvm-svn: 167755 --- llvm/lib/Support/ErrorHandling.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'llvm/lib/Support/ErrorHandling.cpp') diff --git a/llvm/lib/Support/ErrorHandling.cpp b/llvm/lib/Support/ErrorHandling.cpp index e6cc57db824..3c335a66ae5 100644 --- a/llvm/lib/Support/ErrorHandling.cpp +++ b/llvm/lib/Support/ErrorHandling.cpp @@ -81,7 +81,10 @@ void llvm::report_fatal_error(const Twine &Reason) { // files registered with RemoveFileOnSignal. sys::RunInterruptHandlers(); - exit(1); + // 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); } void llvm::llvm_unreachable_internal(const char *msg, const char *file, -- cgit v1.2.3