2022-11-22 09:57:37 -05:00
|
|
|
// Copyright 2022 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2025-04-29 08:03:15 +02:00
|
|
|
// Flags: --wasm-inlining --no-liftoff
|
2022-11-22 09:57:37 -05:00
|
|
|
|
|
|
|
d8.file.execute("test/mjsunit/wasm/wasm-module-builder.js");
|
|
|
|
|
|
|
|
let builder = new WasmModuleBuilder();
|
2024-04-18 07:06:43 +02:00
|
|
|
let global = builder.addGlobal(kWasmI32, false, false);
|
2022-11-22 09:57:37 -05:00
|
|
|
let callee =
|
|
|
|
builder.addFunction('callee', kSig_v_v).addBody([kExprLocalGet, 11]);
|
|
|
|
builder.addFunction('main', kSig_v_v)
|
|
|
|
.addBody([kExprCallFunction, callee.index])
|
|
|
|
.exportFunc();
|
|
|
|
assertThrows(
|
|
|
|
() => builder.instantiate(), WebAssembly.CompileError,
|
|
|
|
/invalid local index: 11/);
|