diff options
Diffstat (limited to 'test/wasm-only.fromasm.imprecise.no-opts')
-rw-r--r-- | test/wasm-only.fromasm.imprecise.no-opts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/wasm-only.fromasm.imprecise.no-opts b/test/wasm-only.fromasm.imprecise.no-opts index a414e6822..eaa5d7973 100644 --- a/test/wasm-only.fromasm.imprecise.no-opts +++ b/test/wasm-only.fromasm.imprecise.no-opts @@ -28,6 +28,8 @@ (export "illegalParam" (func $legalstub$illegalParam)) (export "illegalResult" (func $legalstub$illegalResult)) (export "keepAlive" (func $keepAlive)) + (export "getTempRet0" (func $getTempRet0)) + (export "setTempRet0" (func $setTempRet0)) (func $loads (; 9 ;) (local $i i32) (local $f f32) @@ -1754,4 +1756,12 @@ ) ) ) + (func $getTempRet0 (; 37 ;) (result i32) + (get_global $tempRet0) + ) + (func $setTempRet0 (; 38 ;) (param $0 i32) + (set_global $tempRet0 + (get_local $0) + ) + ) ) |