summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/wasm/regress/shift-counts.js
blob: 33e78ed7de078c8d8561d92d049d267a10c226f7 (plain)
1
2
3
4
5
6
7
8
9
10
load(libdir + "wasm.js");

// Bug 1280926, extracted from binary

wasmEvalText(
`(module
  (type $type0 (func (result i32)))
  (export "" $func0)
  (func $func0 (result i32)
   (i32.shr_s (i32.const -40) (i32.const 34))))`);