diff options
author | Lua Team <team@lua.org> | 2016-05-18 12:00:00 +0000 |
---|---|---|
committer | repogen <> | 2016-05-18 12:00:00 +0000 |
commit | f65e2704f4ab323e2a4912de043a1943a95c0fd7 (patch) | |
tree | d4bb0316ef27fbb581ce3b12eceecd6c0b642f3f /src/lcode.c | |
parent | 11d6d2398adb1022986e7c321c0d5f9efa3e7b37 (diff) | |
download | lua-github-5.3.3-rc2.tar.gz |
Lua 5.3.3-rc25.3.3-rc2
Diffstat (limited to 'src/lcode.c')
-rw-r--r-- | src/lcode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lcode.c b/src/lcode.c index 1027aa1b..2cd0dd2d 100644 --- a/src/lcode.c +++ b/src/lcode.c @@ -1,5 +1,5 @@ /* -** $Id: lcode.c,v 2.108 2016/01/05 16:22:37 roberto Exp $ +** $Id: lcode.c,v 2.109 2016/05/13 19:09:21 roberto Exp $ ** Code generator for Lua ** See Copyright Notice in lua.h */ @@ -1065,7 +1065,7 @@ void luaK_prefix (FuncState *fs, UnOpr op, expdesc *e, int line) { case OPR_MINUS: case OPR_BNOT: if (constfolding(fs, op + LUA_OPUNM, e, &ef)) break; - /* else go through */ + /* FALLTHROUGH */ case OPR_LEN: codeunexpval(fs, cast(OpCode, op + OP_UNM), e, line); break; |