[llvm-commits] CVS: llvm/lib/System/Win32/DynamicLibrary.inc Process.inc Signals.inc TimeValue.inc

Jeff Cohen jeffc at jolt-lang.org
Fri Feb 18 19:01:25 PST 2005



Changes in directory llvm/lib/System/Win32:

DynamicLibrary.inc updated: 1.9 -> 1.10
Process.inc updated: 1.9 -> 1.10
Signals.inc updated: 1.12 -> 1.13
TimeValue.inc updated: 1.7 -> 1.8
---
Log message:

Change __MINGW to __MINGW32__.  Patch submitted by Henrik Bach.


---
Diffs of the changes:  (+4 -4)

 DynamicLibrary.inc |    2 +-
 Process.inc        |    2 +-
 Signals.inc        |    2 +-
 TimeValue.inc      |    2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)


Index: llvm/lib/System/Win32/DynamicLibrary.inc
diff -u llvm/lib/System/Win32/DynamicLibrary.inc:1.9 llvm/lib/System/Win32/DynamicLibrary.inc:1.10
--- llvm/lib/System/Win32/DynamicLibrary.inc:1.9	Wed Dec 29 21:02:31 2004
+++ llvm/lib/System/Win32/DynamicLibrary.inc	Fri Feb 18 21:01:13 2005
@@ -13,7 +13,7 @@
 
 #include "Win32.h"
 
-#ifdef __MINGW
+#ifdef __MINGW32__
 #include <imagehlp.h>
 #else
 #include <dbghelp.h>


Index: llvm/lib/System/Win32/Process.inc
diff -u llvm/lib/System/Win32/Process.inc:1.9 llvm/lib/System/Win32/Process.inc:1.10
--- llvm/lib/System/Win32/Process.inc:1.9	Fri Feb 18 01:05:18 2005
+++ llvm/lib/System/Win32/Process.inc	Fri Feb 18 21:01:13 2005
@@ -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


Index: llvm/lib/System/Win32/Signals.inc
diff -u llvm/lib/System/Win32/Signals.inc:1.12 llvm/lib/System/Win32/Signals.inc:1.13
--- llvm/lib/System/Win32/Signals.inc:1.12	Tue Nov 16 00:59:53 2004
+++ llvm/lib/System/Win32/Signals.inc	Fri Feb 18 21:01:13 2005
@@ -15,7 +15,7 @@
 #include <stdio.h>
 #include <vector>
 
-#ifdef __MINGW
+#ifdef __MINGW32__
 #include <imagehlp.h>
 #else
 #include <dbghelp.h>


Index: llvm/lib/System/Win32/TimeValue.inc
diff -u llvm/lib/System/Win32/TimeValue.inc:1.7 llvm/lib/System/Win32/TimeValue.inc:1.8
--- llvm/lib/System/Win32/TimeValue.inc:1.7	Wed Dec 15 22:06:56 2004
+++ llvm/lib/System/Win32/TimeValue.inc	Fri Feb 18 21:01:13 2005
@@ -31,7 +31,7 @@
 }
 
 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.






More information about the llvm-commits mailing list