summaryrefslogtreecommitdiff
path: root/lcode.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-10-02 19:50:57 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-10-02 19:50:57 -0300
commitf3b3d9b5c2e014148fad830b6762efb57fdcb24b (patch)
tree349238961360128007ae79f86f2e05dc24ff7159 /lcode.c
parent7f9a32ad854d0c91a0ec231199933d536ecce3db (diff)
downloadlua-github-f3b3d9b5c2e014148fad830b6762efb57fdcb24b.tar.gz
string constants (Kstr) must fit into 'B' register
Diffstat (limited to 'lcode.c')
-rw-r--r--lcode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lcode.c b/lcode.c
index 1331a54e..82bcdcbb 100644
--- a/lcode.c
+++ b/lcode.c
@@ -1,5 +1,5 @@
/*
-** $Id: lcode.c,v 2.126 2017/09/28 16:53:29 roberto Exp roberto $
+** $Id: lcode.c,v 2.127 2017/10/01 19:13:43 roberto Exp roberto $
** Code generator for Lua
** See Copyright Notice in lua.h
*/
@@ -1057,7 +1057,7 @@ static void codenot (FuncState *fs, expdesc *e) {
** Check whether expression 'e' is a small literal string
*/
static int isKstr (FuncState *fs, expdesc *e) {
- return (e->k == VK && !hasjumps(e) && e->u.info <= MAXARG_C &&
+ return (e->k == VK && !hasjumps(e) && e->u.info <= MAXARG_B &&
ttisshrstring(&fs->f->k[e->u.info]));
}