MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / fconst32

Method fconst32

pulley/src/interp.rs:3172–3175  ·  view source on GitHub ↗
(&mut self, dst: FReg, bits: u32)

Source from the content-addressed store, hash-verified

3170 }
3171
3172 fn fconst32(&mut self, dst: FReg, bits: u32) -> ControlFlow<Done> {
3173 self.state[dst].set_f32(f32::from_bits(bits));
3174 ControlFlow::Continue(())
3175 }
3176
3177 fn fconst64(&mut self, dst: FReg, bits: u64) -> ControlFlow<Done> {
3178 self.state[dst].set_f64(f64::from_bits(bits));

Callers

nothing calls this directly

Calls 1

set_f32Method · 0.80

Tested by

no test coverage detected