diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-08-20 17:03:05 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-08-20 17:03:05 -0300 |
commit | 6c283b2f4f8398322e7a9a62ec8e131852b4e015 (patch) | |
tree | 608d5b61b14dfdb91cc5cf72637e876337cffcb8 /ldebug.h | |
parent | 576bded5137babb9c669ccff5aedf19ed65a7598 (diff) | |
download | lua-6c283b2f4f8398322e7a9a62ec8e131852b4e015.tar.gz lua-6c283b2f4f8398322e7a9a62ec8e131852b4e015.tar.bz2 lua-6c283b2f4f8398322e7a9a62ec8e131852b4e015.zip |
new simetric format for ABC instructions, to avoid exchanging operands
for `commutative' operators
Diffstat (limited to 'ldebug.h')
-rw-r--r-- | ldebug.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldebug.h,v 1.29 2002/08/08 20:08:41 roberto Exp roberto $ | 2 | ** $Id: ldebug.h,v 1.30 2002/08/12 17:23:12 roberto Exp roberto $ |
3 | ** Auxiliary functions from Debug Interface module | 3 | ** Auxiliary functions from Debug Interface module |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -23,7 +23,7 @@ | |||
23 | 23 | ||
24 | void luaG_typeerror (lua_State *L, const TObject *o, const char *opname); | 24 | void luaG_typeerror (lua_State *L, const TObject *o, const char *opname); |
25 | void luaG_concaterror (lua_State *L, StkId p1, StkId p2); | 25 | void luaG_concaterror (lua_State *L, StkId p1, StkId p2); |
26 | void luaG_aritherror (lua_State *L, StkId p1, const TObject *p2); | 26 | void luaG_aritherror (lua_State *L, const TObject *p1, const TObject *p2); |
27 | int luaG_ordererror (lua_State *L, const TObject *p1, const TObject *p2); | 27 | int luaG_ordererror (lua_State *L, const TObject *p1, const TObject *p2); |
28 | void luaG_runerror (lua_State *L, const char *fmt, ...); | 28 | void luaG_runerror (lua_State *L, const char *fmt, ...); |
29 | void luaG_errormsg (lua_State *L); | 29 | void luaG_errormsg (lua_State *L); |