summaryrefslogtreecommitdiff
path: root/cgiconst.h
diff options
context:
space:
mode:
authorJohn van Groningen2011-11-24 11:58:21 +0000
committerJohn van Groningen2011-11-24 11:58:21 +0000
commite9236a0d7a2f1cc2b71c399f83c53413f6c1860b (patch)
tree8332826365bb82881684636aa8bfbb3c0acf03d1 /cgiconst.h
parentgenerate thread safe code on 64 bit windows if THREAD64 is defined (diff)
generate thread safe code on 32 bit windows if THREAD32 is defined
Diffstat (limited to 'cgiconst.h')
-rw-r--r--cgiconst.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/cgiconst.h b/cgiconst.h
index cc166bc..0370853 100644
--- a/cgiconst.h
+++ b/cgiconst.h
@@ -68,7 +68,10 @@ enum {
#endif
#if defined (I486)
,IADC ,ISBB, IRTSI
- ,IDIVI, IREMI, IREMU, IFLOORDIV, IMOD, IMULUD, IDIVDU
+ ,IDIVI, IREMI, IREMU, IFLOORDIV, IMOD
+# ifndef THREAD32
+ ,IMULUD, IDIVDU
+# endif
,IFLOADS, IFMOVES
#endif
#if defined (I486) || defined (G_POWER)
@@ -80,7 +83,7 @@ enum {
#ifdef G_AI64
,ILOADSQB, IMOVEQB, IFCVT2S
#endif
-#if defined (THREAD64)
+#if defined (THREAD32) || defined (THREAD64)
,ILDTLSP
#endif
};