diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-07-08 17:07:11 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-07-08 17:07:11 -0300 |
| commit | 7978a8d8b22b9f9d0e3d5689910be7fb3a4a02fc (patch) | |
| tree | 693c99a5816aa49a8e03ed4e21f7df0e9e816183 | |
| parent | 32e09c2a16fc57a7b598c48249b60f2ae1dd1a7a (diff) | |
| download | lua-5.2-beta.tar.gz lua-5.2-beta.tar.bz2 lua-5.2-beta.zip | |
added '_M_IX86' in NaN trickv5.2-beta
| -rw-r--r-- | luaconf.h | 12 |
1 files changed, 5 insertions, 7 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: luaconf.h,v 1.159 2011/06/13 14:13:06 roberto Exp roberto $ | 2 | ** $Id: luaconf.h,v 1.160 2011/06/28 17:14:12 roberto Exp roberto $ |
| 3 | ** Configuration file for Lua | 3 | ** Configuration file for Lua |
| 4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
| 5 | */ | 5 | */ |
| @@ -499,12 +499,12 @@ | |||
| 499 | ** doubles with conventional endianess (12345678 or 87654321), in CPUs | 499 | ** doubles with conventional endianess (12345678 or 87654321), in CPUs |
| 500 | ** that do not produce signaling NaN values (all NaNs are quiet). | 500 | ** that do not produce signaling NaN values (all NaNs are quiet). |
| 501 | */ | 501 | */ |
| 502 | #if defined(LUA_CORE) /* { */ | 502 | #if defined(LUA_CORE) && \ |
| 503 | 503 | defined(LUA_NUMBER_DOUBLE) && !defined(LUA_ANSI) /* { */ | |
| 504 | #if defined(LUA_NUMBER_DOUBLE) && !defined(LUA_ANSI) /* { */ | ||
| 505 | 504 | ||
| 506 | /* little-endian architectures that satisfy those conditions */ | 505 | /* little-endian architectures that satisfy those conditions */ |
| 507 | #if defined(__i386__) || defined(__i386) || defined(__X86__) | 506 | #if defined(__i386__) || defined(__i386) || defined(__X86__) || \ |
| 507 | defined(_M_IX86) | ||
| 508 | 508 | ||
| 509 | #define LUA_NANTRICKLE | 509 | #define LUA_NANTRICKLE |
| 510 | 510 | ||
| @@ -512,8 +512,6 @@ | |||
| 512 | 512 | ||
| 513 | #endif /* } */ | 513 | #endif /* } */ |
| 514 | 514 | ||
| 515 | #endif /* } */ | ||
| 516 | |||
| 517 | 515 | ||
| 518 | 516 | ||
| 519 | 517 | ||
