diff options
author | Martin Storsjo <martin@martin.st> | 2017-07-31 06:01:39 +0000 |
---|---|---|
committer | Martin Storsjo <martin@martin.st> | 2017-07-31 06:01:39 +0000 |
commit | adf4489009de308deeef542440705677ff38851e (patch) | |
tree | ba1fefda0ab40d6ead0d7445ffe49730af4bd0a9 /compiler-rt/lib/builtins/enable_execute_stack.c | |
parent | 8c809eb7cd62d7bbdf97a7e050c4b605fa0f4981 (diff) | |
download | bcm5719-llvm-adf4489009de308deeef542440705677ff38851e.tar.gz bcm5719-llvm-adf4489009de308deeef542440705677ff38851e.zip |
[builtins] Fix mingw-w64 cross compilation
Lowercase the Windows.h include in enable_execute_stack.c, just as in
emutls.c in SVN r302340.
Differential Revision: https://reviews.llvm.org/D36066
llvm-svn: 309537
Diffstat (limited to 'compiler-rt/lib/builtins/enable_execute_stack.c')
-rw-r--r-- | compiler-rt/lib/builtins/enable_execute_stack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/builtins/enable_execute_stack.c b/compiler-rt/lib/builtins/enable_execute_stack.c index 0dc3482c446..327d460b425 100644 --- a/compiler-rt/lib/builtins/enable_execute_stack.c +++ b/compiler-rt/lib/builtins/enable_execute_stack.c @@ -22,7 +22,7 @@ #ifdef _WIN32 #define WIN32_LEAN_AND_MEAN -#include <Windows.h> +#include <windows.h> #else #ifndef __APPLE__ #include <unistd.h> |