|
@@ -8064,6 +8064,9 @@ re_scan:
|
|
|
case WASM_OP_SELECT_T:
|
|
case WASM_OP_SELECT_T:
|
|
|
{
|
|
{
|
|
|
uint8 vec_len, ref_type;
|
|
uint8 vec_len, ref_type;
|
|
|
|
|
+#if WASM_ENABLE_FAST_INTERP != 0
|
|
|
|
|
+ uint8 *p_code_compiled_tmp = loader_ctx->p_code_compiled;
|
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
read_leb_uint32(p, p_end, vec_len);
|
|
read_leb_uint32(p, p_end, vec_len);
|
|
|
if (vec_len != 1) {
|
|
if (vec_len != 1) {
|
|
@@ -8086,8 +8089,6 @@ re_scan:
|
|
|
#if WASM_ENABLE_FAST_INTERP != 0
|
|
#if WASM_ENABLE_FAST_INTERP != 0
|
|
|
if (loader_ctx->p_code_compiled) {
|
|
if (loader_ctx->p_code_compiled) {
|
|
|
uint8 opcode_tmp = WASM_OP_SELECT;
|
|
uint8 opcode_tmp = WASM_OP_SELECT;
|
|
|
- uint8 *p_code_compiled_tmp =
|
|
|
|
|
- loader_ctx->p_code_compiled - 2;
|
|
|
|
|
|
|
|
|
|
if (ref_type == VALUE_TYPE_V128) {
|
|
if (ref_type == VALUE_TYPE_V128) {
|
|
|
#if (WASM_ENABLE_SIMD == 0) \
|
|
#if (WASM_ENABLE_SIMD == 0) \
|