浏览代码

new test for macro 'luai_numinvalidop'

Roberto Ierusalimschy 10 年之前
父节点
当前提交
075661ffde
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5 1
      ltests.h

+ 5 - 1
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