diff options
Diffstat (limited to 'lvm.h')
-rw-r--r-- | lvm.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -110,6 +110,11 @@ typedef enum { | |||
110 | luaC_barrierback(L, gcvalue(t), v); } | 110 | luaC_barrierback(L, gcvalue(t), v); } |
111 | 111 | ||
112 | 112 | ||
113 | /* | ||
114 | ** Shift right is the same as shift left with a negative 'y' | ||
115 | */ | ||
116 | #define luaV_shiftr(x,y) luaV_shiftl(x,intop(-, 0, y)) | ||
117 | |||
113 | 118 | ||
114 | 119 | ||
115 | LUAI_FUNC int luaV_equalobj (lua_State *L, const TValue *t1, const TValue *t2); | 120 | LUAI_FUNC int luaV_equalobj (lua_State *L, const TValue *t1, const TValue *t2); |