mirror of https://github.com/rusefi/lua.git
new test for macro 'luai_numinvalidop'
This commit is contained in:
parent
db5ac2fa0d
commit
075661ffde
6
ltests.h
6
ltests.h
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
** $Id: ltests.h,v 2.39 2014/07/24 19:33:29 roberto Exp roberto $
|
** $Id: ltests.h,v 2.40 2014/10/01 11:54:56 roberto Exp roberto $
|
||||||
** Internal Header for Debugging of the Lua Implementation
|
** Internal Header for Debugging of the Lua Implementation
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
@ -104,5 +104,9 @@ void *debug_realloc (void *ud, void *block, size_t osize, size_t nsize);
|
||||||
#define LUAI_USER_ALIGNMENT_T union { char b[sizeof(void*) * 8]; }
|
#define LUAI_USER_ALIGNMENT_T union { char b[sizeof(void*) * 8]; }
|
||||||
|
|
||||||
|
|
||||||
|
/* check macro 'luai_numinvalidop' */
|
||||||
|
#undef luai_numinvalidop
|
||||||
|
#define luai_numinvalidop(op,a,b) (op == LUA_OPADD && a == 1.1 && b == 1)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue