From ec63dfe368f729b218630b95d29ff65713acd3d4 Mon Sep 17 00:00:00 2001 From: Alexandre Ganea Date: Thu, 12 Nov 2020 08:31:57 -0500 Subject: [PATCH] [LLD] Fix include following 45b8a741fbbf271e0fb71294cb7cdce3ad4b9bf3 --- llvm/lib/Support/CrashRecoveryContext.cpp | 1 + llvm/lib/Support/Process.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/llvm/lib/Support/CrashRecoveryContext.cpp b/llvm/lib/Support/CrashRecoveryContext.cpp index 77f00189274f..3d3ca7f567c7 100644 --- a/llvm/lib/Support/CrashRecoveryContext.cpp +++ b/llvm/lib/Support/CrashRecoveryContext.cpp @@ -454,6 +454,7 @@ bool CrashRecoveryContext::throwIfCrash(int RetCode) { ::RaiseException(RetCode, 0, 0, NULL); #else // On Unix, signals are represented by return codes of 128 or higher. + // Exit code 128 is a reserved value and should not be raised as a signal. if (RetCode <= 128) return false; llvm::sys::unregisterHandlers(); diff --git a/llvm/lib/Support/Process.cpp b/llvm/lib/Support/Process.cpp index 8626117f2a0b..e0814444876c 100644 --- a/llvm/lib/Support/Process.cpp +++ b/llvm/lib/Support/Process.cpp @@ -20,7 +20,7 @@ #include "llvm/Support/Path.h" #include "llvm/Support/Program.h" -#include // for _Exit +#include // for _Exit using namespace llvm; using namespace sys;