blob: 98f0314b99daf3c70a50cb0174a30708a869e2eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// 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.
load('test/mjsunit/wasm/wasm-module-builder.js');
const builder = new WasmModuleBuilder();
builder.addFunction('main', kSig_i_iii)
.addLocals({f32_count: 4})
.addLocals({i64_count: 1})
.addLocals({f32_count: 2})
.addBodyWithEnd([
kExprI64Const, 0,
kExprLocalGet, 3,
kExprI64SConvertF32,
kExprI64Ne,
kExprEnd, // @17
]).exportFunc();
const instance = builder.instantiate();
assertEquals(0, instance.exports.main(1, 2, 3));
|