diff options
author | Zachary Turner <zturner@google.com> | 2016-12-21 18:50:52 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-12-21 18:50:52 +0000 |
commit | ab266cf95beb0fc3607afc57ed7d205ddc26ea30 (patch) | |
tree | fe34061014283c495b2fa46189db6c48ba0ccd48 /llvm/lib/Support/Windows | |
parent | 80ba2929e6e757d831ede45cb56186cb66e7ca23 (diff) | |
download | bcm5719-llvm-ab266cf95beb0fc3607afc57ed7d205ddc26ea30.tar.gz bcm5719-llvm-ab266cf95beb0fc3607afc57ed7d205ddc26ea30.zip |
Add missing includes on Windows.
Patch by Andrey Khalyavin
Differential Revision: https://reviews.llvm.org/D27915
llvm-svn: 290263
Diffstat (limited to 'llvm/lib/Support/Windows')
-rw-r--r-- | llvm/lib/Support/Windows/Signals.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/Windows/Signals.inc b/llvm/lib/Support/Windows/Signals.inc index 1d6263a3d7d..f739421eece 100644 --- a/llvm/lib/Support/Windows/Signals.inc +++ b/llvm/lib/Support/Windows/Signals.inc @@ -28,6 +28,7 @@ #ifdef __MINGW32__ #include <imagehlp.h> #else + #include <crtdbg.h> #include <dbghelp.h> #endif #include <psapi.h> |