summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/wasm/regress/shift-counts.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/wasm/regress/shift-counts.js')
-rw-r--r--js/src/jit-test/tests/wasm/regress/shift-counts.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/wasm/regress/shift-counts.js b/js/src/jit-test/tests/wasm/regress/shift-counts.js
new file mode 100644
index 000000000..33e78ed7d
--- /dev/null
+++ b/js/src/jit-test/tests/wasm/regress/shift-counts.js
@@ -0,0 +1,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))))`);