diff options
| author | John van Groningen | 2011-11-24 11:58:21 +0000 |
|---|---|---|
| committer | John van Groningen | 2011-11-24 11:58:21 +0000 |
| commit | e9236a0d7a2f1cc2b71c399f83c53413f6c1860b (patch) | |
| tree | 8332826365bb82881684636aa8bfbb3c0acf03d1 /cgiconst.h | |
| parent | generate 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.h | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 }; |
