MCPcopy Create free account
hub / github.com/WasmVM/WasmVM / F32_const

Class F32_const

src/include/structures/WasmInstr.hpp:320–324  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

318 i64_t value;
319};
320struct F32_const : public Base {
321 F32_const(): Base(Opcode::F32_const), value(0) {}
322 F32_const(f32_t value): Base(Opcode::F32_const), value(value) {}
323 f32_t value;
324};
325struct F64_const : public Base {
326 F64_const(): Base(Opcode::F64_const), value(0) {}
327 F64_const(f64_t value): Base(Opcode::F64_const), value(value) {}

Callers 3

parse_constexprMethod · 0.85
parse_numericinstrMethod · 0.85
instr.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected