diff options
Diffstat (limited to 'test/binaryen.js/kitchen-sink.js')
-rw-r--r-- | test/binaryen.js/kitchen-sink.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/binaryen.js/kitchen-sink.js b/test/binaryen.js/kitchen-sink.js index 6c5afa169..cd3af6750 100644 --- a/test/binaryen.js/kitchen-sink.js +++ b/test/binaryen.js/kitchen-sink.js @@ -391,6 +391,10 @@ function test_core() { module.f32x4.max(module.v128.const(v128_bytes), module.v128.const(v128_bytes)), module.f32x4.pmin(module.v128.const(v128_bytes), module.v128.const(v128_bytes)), module.f32x4.pmax(module.v128.const(v128_bytes), module.v128.const(v128_bytes)), + module.f32x4.ceil(module.v128.const(v128_bytes), module.v128.const(v128_bytes)), + module.f32x4.floor(module.v128.const(v128_bytes), module.v128.const(v128_bytes)), + module.f32x4.trunc(module.v128.const(v128_bytes), module.v128.const(v128_bytes)), + module.f32x4.nearest(module.v128.const(v128_bytes), module.v128.const(v128_bytes)), module.f64x2.add(module.v128.const(v128_bytes), module.v128.const(v128_bytes)), module.f64x2.sub(module.v128.const(v128_bytes), module.v128.const(v128_bytes)), module.f64x2.mul(module.v128.const(v128_bytes), module.v128.const(v128_bytes)), @@ -399,6 +403,10 @@ function test_core() { module.f64x2.max(module.v128.const(v128_bytes), module.v128.const(v128_bytes)), module.f64x2.pmin(module.v128.const(v128_bytes), module.v128.const(v128_bytes)), module.f64x2.pmax(module.v128.const(v128_bytes), module.v128.const(v128_bytes)), + module.f64x2.ceil(module.v128.const(v128_bytes), module.v128.const(v128_bytes)), + module.f64x2.floor(module.v128.const(v128_bytes), module.v128.const(v128_bytes)), + module.f64x2.trunc(module.v128.const(v128_bytes), module.v128.const(v128_bytes)), + module.f64x2.nearest(module.v128.const(v128_bytes), module.v128.const(v128_bytes)), module.i8x16.narrow_i16x8_s(module.v128.const(v128_bytes), module.v128.const(v128_bytes)), module.i8x16.narrow_i16x8_u(module.v128.const(v128_bytes), module.v128.const(v128_bytes)), module.i16x8.narrow_i32x4_s(module.v128.const(v128_bytes), module.v128.const(v128_bytes)), |