diff options
author | Alexandre Ganea <alexandre.ganea@ubisoft.com> | 2020-02-06 15:25:26 -0500 |
---|---|---|
committer | Hans Wennborg <hans@chromium.org> | 2020-02-10 15:30:01 +0100 |
commit | 793d643f6d69e6908a6ece4aacb07b6573e33e18 (patch) | |
tree | 25279d225e915709337fe570d7e3eaa77c17ecbc /llvm/lib/Support/CrashRecoveryContext.cpp | |
parent | b8fead783fa19d48a2e2c3162fba5271360f57b5 (diff) | |
download | bcm5719-llvm-793d643f6d69e6908a6ece4aacb07b6573e33e18.tar.gz bcm5719-llvm-793d643f6d69e6908a6ece4aacb07b6573e33e18.zip |
[Clang] Remove unused #pragma clang __debug handle_crash
As discussed in D70568, remove this because it isn't used anywhere, and I think it's better to go through real crashes for testing (#pragma clang __debug crash).
Also remove the support function llvm::CrashRecoveryContext::HandleCrash() which was added at the same time by @ddunbar.
Differential Revision: https://reviews.llvm.org/D74063
(cherry picked from commit 8ecde3ac34bbb5a8d53d8ec5cd32867658646df1)
Diffstat (limited to 'llvm/lib/Support/CrashRecoveryContext.cpp')
-rw-r--r-- | llvm/lib/Support/CrashRecoveryContext.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/llvm/lib/Support/CrashRecoveryContext.cpp b/llvm/lib/Support/CrashRecoveryContext.cpp index 510f46abe4b..a24bf7bf255 100644 --- a/llvm/lib/Support/CrashRecoveryContext.cpp +++ b/llvm/lib/Support/CrashRecoveryContext.cpp @@ -406,14 +406,6 @@ bool CrashRecoveryContext::RunSafely(function_ref<void()> Fn) { #endif // !_MSC_VER -void CrashRecoveryContext::HandleCrash() { - CrashRecoveryContextImpl *CRCI = (CrashRecoveryContextImpl *) Impl; - assert(CRCI && "Crash recovery context never initialized!"); - // As per convention, -2 indicates a crash or timeout as opposed to failure to - // execute (see llvm/include/llvm/Support/Program.h) - CRCI->HandleCrash(-2, 0); -} - // FIXME: Portability. static void setThreadBackgroundPriority() { #ifdef __APPLE__ |