2019-01-29 14:04:04 +00:00
|
|
|
// Copyright 2019 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.
|
|
|
|
|
2021-06-01 12:46:36 +00:00
|
|
|
d8.file.execute('test/mjsunit/wasm/wasm-module-builder.js');
|
2019-01-29 14:04:04 +00:00
|
|
|
|
|
|
|
const builder = new WasmModuleBuilder();
|
|
|
|
const sig = builder.addType(makeSig([kWasmI32, kWasmI32, kWasmI32], [kWasmI32]));
|
|
|
|
builder.addFunction(undefined, sig)
|
|
|
|
.addBody([
|
2019-10-08 12:38:48 +00:00
|
|
|
kExprLocalGet, 2,
|
2021-03-22 06:56:01 +00:00
|
|
|
kExprIf, kWasmVoid,
|
|
|
|
kExprBlock, kWasmVoid
|
2019-01-29 14:04:04 +00:00
|
|
|
]);
|
|
|
|
builder.addExport('main', 0);
|
|
|
|
assertThrows(() => builder.instantiate(), WebAssembly.CompileError);
|