summaryrefslogtreecommitdiff
path: root/luaconf.h
diff options
context:
space:
mode:
Diffstat (limited to 'luaconf.h')
-rw-r--r--luaconf.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/luaconf.h b/luaconf.h
index f199cde6..389edf33 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -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