summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/regress/wasm/regress-894307.js
blob: a9a3595fbc1aa6bacafec0a0c1e43309af7bd98f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2018 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();
const sig = makeSig([kWasmI32, kWasmI64, kWasmI64], [kWasmI64]);
builder.addFunction(undefined, sig)
  .addBody([
    kExprLocalGet, 2,
    kExprLocalGet, 1,
    kExprI64Shl,
]);
builder.instantiate();