2019-03-15 18:35:06 +05:30
|
|
|
// 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-08-29 14:20:49 +02:00
|
|
|
d8.file.execute('test/mjsunit/wasm/wasm-module-builder.js');
|
2019-03-15 18:35:06 +05:30
|
|
|
|
|
|
|
const builder = new WasmModuleBuilder();
|
|
|
|
const sig = builder.addType(makeSig([kWasmI32, kWasmI32, kWasmI32], [kWasmI32]));
|
|
|
|
builder.addFunction(undefined, sig)
|
|
|
|
.addBody([
|
2019-11-08 15:39:11 +01:00
|
|
|
kExprLocalGet, 2,
|
2021-06-08 14:04:59 +02:00
|
|
|
kExprIf, kWasmVoid,
|
|
|
|
kExprBlock, kWasmVoid
|
2019-03-15 18:35:06 +05:30
|
|
|
]);
|
|
|
|
builder.addExport('main', 0);
|
|
|
|
assertThrows(() => builder.instantiate(), WebAssembly.CompileError);
|