diff options
author | serge-sans-paille <sguelton@redhat.com> | 2022-03-09 22:28:44 +0100 |
---|---|---|
committer | serge-sans-paille <sguelton@redhat.com> | 2022-03-11 11:41:32 +0100 |
commit | fbbc41f8dd233f1f0655852ca3e9634b1bb90cf0 (patch) | |
tree | 76038b2048a09c6856123b2bd854758a0a547b02 /llvm/lib/Support/CrashRecoveryContext.cpp | |
parent | 36be8fabb09764a080e69d37558dd8aa7b81526e (diff) | |
download | llvm-fbbc41f8dd233f1f0655852ca3e9634b1bb90cf0.zip llvm-fbbc41f8dd233f1f0655852ca3e9634b1bb90cf0.tar.gz llvm-fbbc41f8dd233f1f0655852ca3e9634b1bb90cf0.tar.bz2 |
Cleanup include: TableGen
This also includes a few cleanup from Support.
Discourse thread: https://discourse.llvm.org/t/include-what-you-use-include-cleanup
Differential Revision: https://reviews.llvm.org/D121331
Diffstat (limited to 'llvm/lib/Support/CrashRecoveryContext.cpp')
-rw-r--r-- | llvm/lib/Support/CrashRecoveryContext.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/llvm/lib/Support/CrashRecoveryContext.cpp b/llvm/lib/Support/CrashRecoveryContext.cpp index af1f4bb..c4847d8 100644 --- a/llvm/lib/Support/CrashRecoveryContext.cpp +++ b/llvm/lib/Support/CrashRecoveryContext.cpp @@ -9,6 +9,7 @@ #include "llvm/Support/CrashRecoveryContext.h" #include "llvm/Config/llvm-config.h" #include "llvm/Support/ErrorHandling.h" +#include "llvm/Support/ExitCodes.h" #include "llvm/Support/ManagedStatic.h" #include "llvm/Support/Signals.h" #include "llvm/Support/ThreadLocal.h" @@ -16,10 +17,6 @@ #include <mutex> #include <setjmp.h> -#if !defined(_MSC_VER) && !defined(_WIN32) -#include "llvm/Support/ExitCodes.h" -#endif - using namespace llvm; namespace { |