diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-11-13 16:42:19 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-11-13 16:42:19 +0000 |
commit | fc298c76c7e5f569ab4310b237784609458c2ea8 (patch) | |
tree | c360e97b2fc0eee044cf636827696c462c8433d3 /lib/Support/ErrorHandling.cpp | |
parent | 90c61c4a7497d24e9e29fc64e311e45b0419e13d (diff) |
Revert 167755/167760. We don't want to emit crash diagnostics on command-line syntax errors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167849 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/ErrorHandling.cpp')
-rw-r--r-- | lib/Support/ErrorHandling.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/Support/ErrorHandling.cpp b/lib/Support/ErrorHandling.cpp index 3c335a66ae..e6cc57db82 100644 --- a/lib/Support/ErrorHandling.cpp +++ b/lib/Support/ErrorHandling.cpp @@ -81,10 +81,7 @@ void llvm::report_fatal_error(const Twine &Reason) { // files registered with RemoveFileOnSignal. sys::RunInterruptHandlers(); - // 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); + exit(1); } void llvm::llvm_unreachable_internal(const char *msg, const char *file, |