summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/debugger/wasm-scope-info.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/inspector/debugger/wasm-scope-info.js')
-rw-r--r--deps/v8/test/inspector/debugger/wasm-scope-info.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/deps/v8/test/inspector/debugger/wasm-scope-info.js b/deps/v8/test/inspector/debugger/wasm-scope-info.js
index b1b270edfc..74d024c027 100644
--- a/deps/v8/test/inspector/debugger/wasm-scope-info.js
+++ b/deps/v8/test/inspector/debugger/wasm-scope-info.js
@@ -90,6 +90,7 @@ async function instantiateWasm() {
.addLocals(kWasmI64, 1, ['i64_local'])
.addLocals(kWasmF64, 3, ['unicodeā˜¼f64', '0', '0'])
.addLocals(kWasmS128, 1)
+ .addLocals(kWasmF32, 1, [''])
.addBody([
// Set param 0 to 11.
kExprI32Const, 11, kExprLocalSet, 0,
@@ -108,6 +109,9 @@ async function instantiateWasm() {
kExprI32Const, 23,
kSimdPrefix, kExprI32x4Splat,
kExprLocalSet, 6,
+ // Set local 7 to 21
+ kExprI32Const, 21, kExprF32UConvertI32,
+ kExprLocalSet, 7,
// Set global 0 to 15
kExprI32Const, 15, kExprGlobalSet, 0,