[PATCH 118/188] support for tee_local instruction format

From c185d43ebce41f189f32272286ef1d3798eee4af Mon Sep 17 00:00:00 2001
From: Dmitry Boyarintsev <skalogryz.lists@gmail.com>
Date: Wed, 18 Mar 2020 15:14:58 -0400

git-svn-id: branches/wasm@46114 -
This commit is contained in:
nickysn 2020-08-03 13:01:10 +00:00
parent 1b7d815def
commit 6278acb792

View File

@ -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;