diff options
Diffstat (limited to 'scripts/gen-s-parser.py')
-rwxr-xr-x | scripts/gen-s-parser.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/gen-s-parser.py b/scripts/gen-s-parser.py index 53853b7f3..d9c01f53f 100755 --- a/scripts/gen-s-parser.py +++ b/scripts/gen-s-parser.py @@ -593,7 +593,8 @@ instructions = [ ("array.new_default", "makeArrayNew(s, true)"), ("array.new_data", "makeArrayNewSeg(s, NewData)"), ("array.new_elem", "makeArrayNewSeg(s, NewElem)"), - ("array.init_static", "makeArrayNewFixedStatic(s)"), + ("array.init_static", "makeArrayNewFixed(s)"), # deprecated + ("array.new_fixed", "makeArrayNewFixed(s)"), ("array.get", "makeArrayGet(s)"), ("array.get_s", "makeArrayGet(s, true)"), ("array.get_u", "makeArrayGet(s, false)"), |