commit 075661ffde8cdd48dcb7e4e2033408cee4535edf
parent db5ac2fa0df1e0d6f7a4a1e5d6e0b5e4ac4456c0
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Mon, 24 Nov 2014 12:56:31 -0200
new test for macro 'luai_numinvalidop'
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/ltests.h b/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
** 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]; }
+/* check macro 'luai_numinvalidop' */
+#undef luai_numinvalidop
+#define luai_numinvalidop(op,a,b) (op == LUA_OPADD && a == 1.1 && b == 1)
+
#endif