mirror of
https://github.com/lua/lua
synced 2024-11-22 12:51:30 +03:00
comment
This commit is contained in:
parent
4870194380
commit
4b526045fa
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
|
||||
** See Copyright Notice in lua.h
|
||||
*/
|
||||
@ -31,7 +31,7 @@
|
||||
#define MAXREGS 250
|
||||
|
||||
|
||||
/* test for x == -0 */
|
||||
/* test for x == -0 ('signbit' needs 'math.h') */
|
||||
#if defined(signbit)
|
||||
#define isminuszero(x) ((x) == 0.0 && signbit(x))
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user