summaryrefslogtreecommitdiff
path: root/test/wasm2js/conversions-emscripten-modified.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/wasm2js/conversions-emscripten-modified.wast')
-rw-r--r--test/wasm2js/conversions-emscripten-modified.wast10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/wasm2js/conversions-emscripten-modified.wast b/test/wasm2js/conversions-emscripten-modified.wast
new file mode 100644
index 000000000..05de07c47
--- /dev/null
+++ b/test/wasm2js/conversions-emscripten-modified.wast
@@ -0,0 +1,10 @@
+(module
+ (func (export "i32.trunc_sat_f32_s") (param $x f32) (result i32) (i32.trunc_sat_f32_s (local.get $x)))
+ (func (export "i32.trunc_sat_f32_u") (param $x f32) (result i32) (i32.trunc_sat_f32_u (local.get $x)))
+ (func (export "i32.trunc_sat_f64_s") (param $x f64) (result i32) (i32.trunc_sat_f64_s (local.get $x)))
+ (func (export "i32.trunc_sat_f64_u") (param $x f64) (result i32) (i32.trunc_sat_f64_u (local.get $x)))
+ (func (export "i64.trunc_sat_f32_s") (param $x f32) (result i64) (i64.trunc_sat_f32_s (local.get $x)))
+ (func (export "i64.trunc_sat_f32_u") (param $x f32) (result i64) (i64.trunc_sat_f32_u (local.get $x)))
+ (func (export "i64.trunc_sat_f64_s") (param $x f64) (result i64) (i64.trunc_sat_f64_s (local.get $x)))
+ (func (export "i64.trunc_sat_f64_u") (param $x f64) (result i64) (i64.trunc_sat_f64_u (local.get $x)))
+)