Remove iwasm/runtime/platform src files, refine interpreter and fix issue of --repl option (#150)

This commit is contained in:
wenyongh
2019-12-18 11:53:43 +08:00
committed by GitHub
parent 631b7a2403
commit 5875a37f34
43 changed files with 84 additions and 646 deletions

View File

@ -146,7 +146,6 @@ typedef struct WASMGlobalImport {
char *field_name;
uint8 type;
bool is_mutable;
bool is_addr;
/* global data after linked */
WASMValue global_data_linked;
} WASMGlobalImport;
@ -179,7 +178,6 @@ typedef struct WASMFunction {
typedef struct WASMGlobal {
uint8 type;
bool is_mutable;
bool is_addr;
InitializerExpression init_expr;
} WASMGlobal;