v8/test/mjsunit/regress/wasm/regress-1236958.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
695 B
JavaScript
Raw Normal View History

// Copyright 2021 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.
// Flags: --experimental-wasm-gc
d8.file.execute('test/mjsunit/wasm/wasm-module-builder.js');
var builder = new WasmModuleBuilder();
let array = builder.addArray(kWasmI64, true);
builder.addFunction('test', kSig_v_v)
.addBody([kExprLoop, kWasmVoid,
kExprI64Const, 15,
kExprI32Const, 12,
kGCPrefix, kExprRttCanon, array,
kGCPrefix, kExprArrayNewWithRtt, array,
kExprDrop,
kExprEnd])
.exportFunc();
builder.instantiate();