diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2017-07-29 21:25:18 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2017-07-29 21:25:18 +0000 | 
| commit | 3ad6a4b447326bc16c17df65637ca02330b8d090 (patch) | |
| tree | 568321855815f8ca008258972e27d4a3ea487475 /lib/Support/ErrorHandling.cpp | |
| parent | 93c91e39b29142dec1d03a30df9f6e757f56c193 (diff) | |
Notes
Diffstat (limited to 'lib/Support/ErrorHandling.cpp')
| -rw-r--r-- | lib/Support/ErrorHandling.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/lib/Support/ErrorHandling.cpp b/lib/Support/ErrorHandling.cpp index 2fd4f3ea0d452..fb8ae4c1cd5ef 100644 --- a/lib/Support/ErrorHandling.cpp +++ b/lib/Support/ErrorHandling.cpp @@ -169,7 +169,8 @@ void llvm::report_bad_alloc_error(const char *Reason, bool GenCrashDiag) {    // Don't call the normal error handler. It may allocate memory. Directly write    // an OOM to stderr and abort.    char OOMMessage[] = "LLVM ERROR: out of memory\n"; -  (void)::write(2, OOMMessage, strlen(OOMMessage)); +  ssize_t written = ::write(2, OOMMessage, strlen(OOMMessage)); +  (void)written;    abort();  #endif  } | 
