Skip to content

Commit b248d97

Browse files
committed
Improve error message formatting for v128 value type requirement
rebase and fix the format problem
1 parent 5bae069 commit b248d97

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/iwasm/interpreter/wasm_loader.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12961,7 +12961,8 @@ wasm_loader_prepare_bytecode(WASMModule *module, WASMFunction *func,
1296112961
|| WASM_ENABLE_FAST_INTERP != 0 && WASM_ENABLE_SIMD != 0
1296212962
opcode_tmp = WASM_OP_SELECT_128;
1296312963
#else
12964-
set_error_buf(error_buf, error_buf_size, "v128 value type requires simd feature");
12964+
set_error_buf(error_buf, error_buf_size,
12965+
"v128 value type requires simd feature");
1296512966
#endif
1296612967
}
1296712968
else {

0 commit comments

Comments
 (0)