diff options
Diffstat (limited to 'deps/v8/test/mjsunit/regress/wasm/regression-727219.js')
-rw-r--r-- | deps/v8/test/mjsunit/regress/wasm/regression-727219.js | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/deps/v8/test/mjsunit/regress/wasm/regression-727219.js b/deps/v8/test/mjsunit/regress/wasm/regression-727219.js new file mode 100644 index 0000000000..af0d8725bc --- /dev/null +++ b/deps/v8/test/mjsunit/regress/wasm/regression-727219.js @@ -0,0 +1,22 @@ +// Copyright 2017 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: --expose-gc --validate-asm + +function asm() { + "use asm"; + function f(a) { + a = a | 0; + tab[a & 0]() | 0; + } + function unused() { + return 0; + } + var tab = [ unused ]; + return f; +} + +asm(); +gc(); +asm(); |