From 0c61c7057a91560772a884b44cdd841100105ec1 Mon Sep 17 00:00:00 2001 From: Nikolay Nikolov Date: Fri, 12 Jul 2024 16:09:07 +0300 Subject: [PATCH] * fixed some WebAssembly instruction names in the wasm_op2str array --- compiler/wasm32/strinst.inc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/compiler/wasm32/strinst.inc b/compiler/wasm32/strinst.inc index 70dd107165..bb9cf4f688 100644 --- a/compiler/wasm32/strinst.inc +++ b/compiler/wasm32/strinst.inc @@ -22,11 +22,12 @@ '', // control flow - 'block', 'loop', 'br', 'br_if', 'br_table', 'if', 'else', 'end', 'end', 'end', '', + 'block', 'loop', 'br', 'br_if', 'br_table', 'if', 'else', 'end' {block}, + 'end' {loop}, 'end' {if}, '' {end function}, 'return', 'unreachable', // basic 'nop', 'drop', 'i32.const', 'i64.const', 'f32.const', 'f64.const', - 'get_local', 'set_local', 'tee_local', 'get_global', 'set_global', + 'local.get', 'local.set', 'local.tee', 'global.get', 'global.set', 'select', 'call', 'call_indirect', // integer 'i32.add', 'i64.add', 'i32.sub', 'i64.sub', 'i32.mul', 'i64.mul', @@ -83,7 +84,7 @@ 'i64.trunc_sat_f64_s', 'i64.trunc_sat_f64_u', // exceptions - 'try','catch','catch_all','delegate','throw','rethrow','end', + 'try','catch','catch_all','delegate','throw','rethrow','end' {try}, // atomic memory accesses - load/store 'i32.atomic.load8_u', 'i32.atomic.load16_u', 'i32.atomic.load', 'i64.atomic.load8_u', 'i64.atomic.load16_u', 'i64.atomic.load32_u',