From 78a2f33176c692da7e8dfefb569b0ab5958be142 Mon Sep 17 00:00:00 2001 From: Ilya Rezvov Date: Wed, 15 Jan 2025 17:18:28 -0700 Subject: [PATCH] update spec global imports --- src/Language/Wasm/Script.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Language/Wasm/Script.hs b/src/Language/Wasm/Script.hs index 71069d8..9e98224 100644 --- a/src/Language/Wasm/Script.hs +++ b/src/Language/Wasm/Script.hs @@ -78,8 +78,8 @@ runScript onAssertFail script = do hostGlobals = do let globI32 = Interpreter.makeConstGlobal $ Interpreter.VI32 666 let globI64 = Interpreter.makeConstGlobal $ Interpreter.VI64 666 - let globF32 = Interpreter.makeConstGlobal $ Interpreter.VF32 666 - let globF64 = Interpreter.makeConstGlobal $ Interpreter.VF64 666 + let globF32 = Interpreter.makeConstGlobal $ Interpreter.VF32 666.6 + let globF64 = Interpreter.makeConstGlobal $ Interpreter.VF64 666.6 return ( Interpreter.HostGlobal globI32, Interpreter.HostGlobal globI64,