Change __MINGW to __MINGW32__. Patch submitted by Henrik Bach.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20243 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jeff Cohen 2005-02-19 03:01:13 +00:00
parent a977c486ba
commit 23a1cf3e08
5 changed files with 5 additions and 5 deletions

View File

@ -28,7 +28,7 @@
#define alloca _alloca
#elif defined(HAVE_ALLOCA_H)
#include <alloca.h>
#elif defined(__MINGW) && defined(HAVE_MALLOC_H)
#elif defined(__MINGW32__) && defined(HAVE_MALLOC_H)
#include <malloc.h>
#elif !defined(__GNUC__)
# ifdef _AIX

View File

@ -13,7 +13,7 @@
#include "Win32.h"
#ifdef __MINGW
#ifdef __MINGW32__
#include <imagehlp.h>
#else
#include <dbghelp.h>

View File

@ -23,7 +23,7 @@
//=== and must not be UNIX code
//===----------------------------------------------------------------------===//
#ifdef __MINGW
#ifdef __MINGW32__
// This ban should be lifted when MinGW 1.0+ has defined this value.
# define _HEAPOK (-2)
#endif

View File

@ -15,7 +15,7 @@
#include <stdio.h>
#include <vector>
#ifdef __MINGW
#ifdef __MINGW32__
#include <imagehlp.h>
#else
#include <dbghelp.h>

View File

@ -31,7 +31,7 @@ TimeValue TimeValue::now() {
}
std::string TimeValue::toString() const {
#ifdef __MINGW
#ifdef __MINGW32__
// This ban may be lifted by either:
// (i) a future MinGW version other than 1.0 inherents the __time64_t type, or
// (ii) configure tests for either the time_t or __time64_t type.