diff options
author | Alon Zakai <alonzakai@gmail.com> | 2017-07-18 11:22:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-18 11:22:08 -0700 |
commit | 0b2122d49a28f199ef7fde247e7e7a14829fa96e (patch) | |
tree | def77ee01192fd27fca6cec61fa82c4525873ddf /test/passes/optimize-instructions.wast | |
parent | 275c5ebafdf2860edb965d322bdad4c3e3717bea (diff) | |
parent | 2daf000f471afdcf21f784f83440bb4bdc1a9de9 (diff) | |
download | binaryen-0b2122d49a28f199ef7fde247e7e7a14829fa96e.tar.gz binaryen-0b2122d49a28f199ef7fde247e7e7a14829fa96e.tar.bz2 binaryen-0b2122d49a28f199ef7fde247e7e7a14829fa96e.zip |
Merge pull request #1100 from WebAssembly/fuzz-4
Yet more fuzz fixes
Diffstat (limited to 'test/passes/optimize-instructions.wast')
-rw-r--r-- | test/passes/optimize-instructions.wast | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/passes/optimize-instructions.wast b/test/passes/optimize-instructions.wast index 6d1fd60ed..cf8275412 100644 --- a/test/passes/optimize-instructions.wast +++ b/test/passes/optimize-instructions.wast @@ -2417,4 +2417,20 @@ ) ) ) + (func $sign-ext-1-and-ne (result i32) + (select + (i32.ne + (i32.const 1333788672) + (i32.shr_s + (i32.shl + (call $sign-ext-1-and-ne) + (i32.const 1) + ) + (i32.const 1) + ) + ) + (i32.const 2) + (i32.const 1) + ) + ) ) |