diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/gen-s-parser.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/gen-s-parser.py b/scripts/gen-s-parser.py index db0dbc66f..d66f10852 100755 --- a/scripts/gen-s-parser.py +++ b/scripts/gen-s-parser.py @@ -66,8 +66,8 @@ instructions = [ ("i64.store8", "makeStore(s, Type::i64, /*isAtomic=*/false)"), ("i64.store16", "makeStore(s, Type::i64, /*isAtomic=*/false)"), ("i64.store32", "makeStore(s, Type::i64, /*isAtomic=*/false)"), - ("memory.size", "makeHost(s, HostOp::MemorySize)"), - ("memory.grow", "makeHost(s, HostOp::MemoryGrow)"), + ("memory.size", "makeMemorySize(s)"), + ("memory.grow", "makeMemoryGrow(s)"), ("i32.const", "makeConst(s, Type::i32)"), ("i64.const", "makeConst(s, Type::i64)"), ("f32.const", "makeConst(s, Type::f32)"), |