diff options
Diffstat (limited to 'test/binaryen.js/kitchen-sink.js')
-rw-r--r-- | test/binaryen.js/kitchen-sink.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/binaryen.js/kitchen-sink.js b/test/binaryen.js/kitchen-sink.js index 851843466..7a191a90d 100644 --- a/test/binaryen.js/kitchen-sink.js +++ b/test/binaryen.js/kitchen-sink.js @@ -293,10 +293,14 @@ function test_core() { module.f64x2.abs(module.v128.const(v128_bytes)), module.f64x2.neg(module.v128.const(v128_bytes)), module.f64x2.sqrt(module.v128.const(v128_bytes)), + module.f64x2.convert_low_i32x4_s(module.v128.const(v128_bytes)), + module.f64x2.convert_low_i32x4_u(module.v128.const(v128_bytes)), + module.f64x2.promote_low_f32x4(module.v128.const(v128_bytes)), module.i32x4.trunc_sat_f32x4_s(module.v128.const(v128_bytes)), module.i32x4.trunc_sat_f32x4_u(module.v128.const(v128_bytes)), module.f32x4.convert_i32x4_s(module.v128.const(v128_bytes)), module.f32x4.convert_i32x4_u(module.v128.const(v128_bytes)), + module.f32x4.demote_f64x2_zero(module.v128.const(v128_bytes)), module.i16x8.extend_low_i8x16_s(module.v128.const(v128_bytes)), module.i16x8.extend_high_i8x16_s(module.v128.const(v128_bytes)), module.i16x8.extend_low_i8x16_u(module.v128.const(v128_bytes)), @@ -305,6 +309,8 @@ function test_core() { module.i32x4.extend_high_i16x8_s(module.v128.const(v128_bytes)), module.i32x4.extend_low_i16x8_u(module.v128.const(v128_bytes)), module.i32x4.extend_high_i16x8_u(module.v128.const(v128_bytes)), + module.i32x4.trunc_sat_f64x2_s_zero(module.v128.const(v128_bytes)), + module.i32x4.trunc_sat_f64x2_u_zero(module.v128.const(v128_bytes)), module.i64x2.extend_low_i32x4_s(module.v128.const(v128_bytes)), module.i64x2.extend_high_i32x4_s(module.v128.const(v128_bytes)), module.i64x2.extend_low_i32x4_u(module.v128.const(v128_bytes)), |