From 0dbf0c5953a3d72deebc7e41840a0e73b46de8bc Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 6 May 2002 12:51:41 -0300 Subject: new format for test intructions (handle NaN correctly) --- lobject.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index a7286927..6637631a 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 1.128 2002/03/25 17:47:14 roberto Exp roberto $ +** $Id: lobject.h,v 1.129 2002/04/05 18:54:31 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -230,6 +230,15 @@ typedef struct Table { #define sizearray(t) ((t)->sizearray) +/* +** masks for comparison results +*/ +#define CMP_EQ 1 +#define CMP_LT 2 +#define CMP_GT 4 +#define CMP_N 8 /* not comparable values (e.g. NaN) */ + + extern const TObject luaO_nilobject; int luaO_log2 (unsigned int x); -- cgit v1.2.3-55-g6feb