comment
This commit is contained in:
4
lcode.c
4
lcode.c
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
** $Id: lcode.c,v 2.91 2014/10/25 11:50:46 roberto Exp roberto $
|
** $Id: lcode.c,v 2.92 2014/10/27 16:29:58 roberto Exp roberto $
|
||||||
** Code generator for Lua
|
** Code generator for Lua
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
#define MAXREGS 250
|
#define MAXREGS 250
|
||||||
|
|
||||||
|
|
||||||
/* test for x == -0 */
|
/* test for x == -0 ('signbit' needs 'math.h') */
|
||||||
#if defined(signbit)
|
#if defined(signbit)
|
||||||
#define isminuszero(x) ((x) == 0.0 && signbit(x))
|
#define isminuszero(x) ((x) == 0.0 && signbit(x))
|
||||||
#else
|
#else
|
||||||
|
|||||||
Reference in New Issue
Block a user