diff options
author | Pawel Bylica <chfast@gmail.com> | 2015-10-15 14:50:31 +0000 |
---|---|---|
committer | Pawel Bylica <chfast@gmail.com> | 2015-10-15 14:50:31 +0000 |
commit | 6b129bd464831194da957b3462d7ddd27a0b2a08 (patch) | |
tree | f578ee0b52985be3e7024cf27d492349d7133628 | |
parent | 141051027bdb9beaa4cb0a93c15e8cf3fbc64510 (diff) | |
download | bcm5719-llvm-6b129bd464831194da957b3462d7ddd27a0b2a08.tar.gz bcm5719-llvm-6b129bd464831194da957b3462d7ddd27a0b2a08.zip |
Require Windows API of version 6.1 (Windows 7).
llvm-svn: 250413
-rw-r--r-- | llvm/lib/Support/Windows/WindowsSupport.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Support/Windows/WindowsSupport.h b/llvm/lib/Support/Windows/WindowsSupport.h index 5bb0b8d2d78..f12d2e43014 100644 --- a/llvm/lib/Support/Windows/WindowsSupport.h +++ b/llvm/lib/Support/Windows/WindowsSupport.h @@ -26,9 +26,9 @@ #undef _WIN32_WINNT #undef _WIN32_IE -// Require at least Windows XP(5.1) API. -#define _WIN32_WINNT 0x0501 -#define _WIN32_IE 0x0600 // MinGW at it again. +// Require at least Windows 7 API. +#define _WIN32_WINNT 0x0601 +#define _WIN32_IE 0x0800 // MinGW at it again. FIXME: verify if still needed. #define WIN32_LEAN_AND_MEAN #include "llvm/ADT/SmallVector.h" |