Browse Source

[PATCH 118/188] support for tee_local instruction format

From c185d43ebce41f189f32272286ef1d3798eee4af Mon Sep 17 00:00:00 2001
From: Dmitry Boyarintsev <[email protected]>
Date: Wed, 18 Mar 2020 15:14:58 -0400

git-svn-id: branches/wasm@46114 -
nickysn 5 years ago
parent
commit
6278acb792
1 changed files with 2 additions and 0 deletions
  1. 2 0
      utils/wasmbin/wasmtext.pas

+ 2 - 0
utils/wasmbin/wasmtext.pas

@@ -450,6 +450,8 @@ begin
     else if t = 'set_local' then inst := INST_local_set
     else if t = 'set_global' then inst := INST_global_set
     else Result := false;
+  't':
+    if t = 'tee_local' then inst := INST_local_tee;
   'u':
     if t ='unreachable' then inst := inst_unreachable
     else Result := false;