diff options
Diffstat (limited to 'test/passes')
-rw-r--r-- | test/passes/precompute_all-features.txt | 9 | ||||
-rw-r--r-- | test/passes/precompute_all-features.wast | 7 |
2 files changed, 15 insertions, 1 deletions
diff --git a/test/passes/precompute_all-features.txt b/test/passes/precompute_all-features.txt index b707f4248..dc93f90e4 100644 --- a/test/passes/precompute_all-features.txt +++ b/test/passes/precompute_all-features.txt @@ -1,8 +1,8 @@ (module (type $none_=>_none (func)) (type $none_=>_i32 (func (result i32))) - (type $none_=>_f64 (func (result f64))) (type $none_=>_v128 (func (result v128))) + (type $none_=>_f64 (func (result f64))) (type $0 (func (param i32))) (type $none_=>_i32_i64 (func (result i32 i64))) (type $none_=>_externref (func (result externref))) @@ -222,6 +222,13 @@ (i32.const 0) ) ) + (func $no-simd-precompute_2 (result v128) + (i32x4.extadd_pairwise_i16x8_s + (i32x4.splat + (i32.const 0) + ) + ) + ) (func $no-simd-precompute-if (result v128) (return (i32x4.splat diff --git a/test/passes/precompute_all-features.wast b/test/passes/precompute_all-features.wast index 1275524e0..e306be495 100644 --- a/test/passes/precompute_all-features.wast +++ b/test/passes/precompute_all-features.wast @@ -329,6 +329,13 @@ (i32.const 0) ) ) + (func $no-simd-precompute_2 (result v128) + (i32x4.extadd_pairwise_i16x8_s + (i32x4.splat + (i32.const 0) + ) + ) + ) (func $no-simd-precompute-if (result v128) (return (i32x4.splat |