diff options
Diffstat (limited to 'test/unit.fromasm')
-rw-r--r-- | test/unit.fromasm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/unit.fromasm b/test/unit.fromasm index df8d61208..1c8064892 100644 --- a/test/unit.fromasm +++ b/test/unit.fromasm @@ -75,6 +75,7 @@ (export "dropIgnoredImportInIf" (func $dropIgnoredImportInIf)) (export "dropIgnoredImportsInIf" (func $dropIgnoredImportsInIf)) (export "relooperJumpThreading_irreducible" (func $relooperJumpThreading_irreducible)) + (export "store_fround" (func $store_fround)) (func $big_negative (nop) ) @@ -1125,6 +1126,16 @@ ) ) ) + (func $store_fround (param $0 i32) + (f64.store + (i32.const 80) + (f64.promote/f32 + (f32.convert_s/i32 + (get_local $0) + ) + ) + ) + ) (func $vi (param $0 i32) (nop) ) |