mirror of
https://github.com/lua/lua
synced 2026-09-27 00:28:25 +03:00
Fixed a warning and other minor issues
Fixed some minor issues from the feedback for 5.4-beta rc1.
This commit is contained in:
parent
b98d41db99
commit
7bd1e53753
6 changed files with 9 additions and 8 deletions
4
lcode.c
4
lcode.c
|
|
@ -1650,8 +1650,8 @@ void luaK_posfix (FuncState *fs, BinOpr opr,
|
|||
case OPR_SUB: {
|
||||
if (finishbinexpneg(fs, e1, e2, OP_ADDI, line, TM_SUB))
|
||||
break; /* coded as (r1 + -I) */
|
||||
/* ELSE *//* FALLTHROUGH */
|
||||
}
|
||||
/* ELSE */
|
||||
} /* FALLTHROUGH */
|
||||
case OPR_DIV: case OPR_IDIV: case OPR_MOD: case OPR_POW: {
|
||||
codearith(fs, opr, e1, e2, 0, line);
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue