diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-04-26 10:08:29 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-04-26 10:08:29 -0300 |
commit | a2f5c28a802ae99f2045ab96585fade2c65b2037 (patch) | |
tree | eb2ab3d1fc8dc2084505ed4286502ed75b6721ba /ldebug.c | |
parent | a80a2b5e561b50c1f64e96c3692614611a325aba (diff) | |
download | lua-a2f5c28a802ae99f2045ab96585fade2c65b2037.tar.gz lua-a2f5c28a802ae99f2045ab96585fade2c65b2037.tar.bz2 lua-a2f5c28a802ae99f2045ab96585fade2c65b2037.zip |
new operation '//' (integer division)
Diffstat (limited to 'ldebug.c')
-rw-r--r-- | ldebug.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldebug.c,v 2.90 2012/08/16 17:34:28 roberto Exp roberto $ | 2 | ** $Id: ldebug.c,v 2.91 2013/04/25 15:59:42 roberto Exp roberto $ |
3 | ** Debug Interface | 3 | ** Debug Interface |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -453,6 +453,7 @@ static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name) { | |||
453 | case OP_SUB: tm = TM_SUB; break; | 453 | case OP_SUB: tm = TM_SUB; break; |
454 | case OP_MUL: tm = TM_MUL; break; | 454 | case OP_MUL: tm = TM_MUL; break; |
455 | case OP_DIV: tm = TM_DIV; break; | 455 | case OP_DIV: tm = TM_DIV; break; |
456 | case OP_IDIV: tm = TM_IDIV; break; | ||
456 | case OP_MOD: tm = TM_MOD; break; | 457 | case OP_MOD: tm = TM_MOD; break; |
457 | case OP_POW: tm = TM_POW; break; | 458 | case OP_POW: tm = TM_POW; break; |
458 | case OP_UNM: tm = TM_UNM; break; | 459 | case OP_UNM: tm = TM_UNM; break; |