* support.h: Use _WIN32 instead of __WIN32__. Also add defs for
authorStu Grossman <grossman@cygnus>
Fri, 20 Dec 1996 19:05:28 +0000 (19:05 +0000)
committerStu Grossman <grossman@cygnus>
Fri, 20 Dec 1996 19:05:28 +0000 (19:05 +0000)
SIGTRAP and SIGQUIT for _WIN32.

sim/mips/ChangeLog
sim/mips/support.h

index 6b76eb984055bf2a2bd4b1754f235a3d6633a090..53b65cb2acb5c64db533fe9444ad504ec9a1e38f 100644 (file)
@@ -1,3 +1,8 @@
+Fri Dec 20 11:04:05 1996  Stu Grossman  (grossman@critters.cygnus.com)
+
+       * support.h:  Use _WIN32 instead of __WIN32__.  Also add defs for
+       SIGTRAP and SIGQUIT for _WIN32.
+
 Thu Dec 19 14:07:27 1996  Ian Lance Taylor  <ian@cygnus.com>
 
        * gencode.c (build_instruction) [MUL]: Cast operands to word64, to
index 11f285c3724e8bee41bd6c5b6af9c1d04be773c9..f921e62435886b90dcaa6f727fa6467284a85bfa 100644 (file)
    architectures if desired. */
 
 /* Control via a build boolean for the moment */
-#if defined(__GNUC__) || defined(__WIN32__)
+#if defined(__GNUC__) || defined(_WIN32)
 
-#ifdef __WIN32__
+#ifdef _WIN32
+#define SIGTRAP 5
+#define SIGQUIT 3
 typedef signed __int64 word64;
 typedef unsigned __int64 uword64;
 #else
This page took 0.06354 seconds and 4 git commands to generate.