aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/regress/wasm/regress-919308.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mjsunit/regress/wasm/regress-919308.js')
-rw-r--r--deps/v8/test/mjsunit/regress/wasm/regress-919308.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/deps/v8/test/mjsunit/regress/wasm/regress-919308.js b/deps/v8/test/mjsunit/regress/wasm/regress-919308.js
new file mode 100644
index 0000000000..cb10662290
--- /dev/null
+++ b/deps/v8/test/mjsunit/regress/wasm/regress-919308.js
@@ -0,0 +1,37 @@
+// 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-constants.js');
+load('test/mjsunit/wasm/wasm-module-builder.js');
+
+const builder = new WasmModuleBuilder();
+builder.addFunction(undefined, kSig_i_i)
+ .addLocals({i32_count: 5})
+ .addBody([
+ kExprGetLocal, 0, // --> 1
+ kExprIf, kWasmI32,
+ kExprGetLocal, 0, // --> 1
+ kExprElse,
+ kExprUnreachable,
+ kExprEnd,
+ kExprIf, kWasmI32,
+ kExprGetLocal, 0, // --> 1
+ kExprElse,
+ kExprUnreachable,
+ kExprEnd,
+ kExprIf, kWasmI32,
+ kExprI32Const, 0,
+ kExprGetLocal, 0,
+ kExprI32Sub, // --> -1
+ kExprGetLocal, 0,
+ kExprGetLocal, 0,
+ kExprI32Sub, // --> 0
+ kExprI32Sub, // --> -1
+ kExprElse,
+ kExprUnreachable,
+ kExprEnd
+]);
+builder.addExport('main', 0);
+const instance = builder.instantiate();
+assertEquals(-1, instance.exports.main(1));