| 318 | i64_t value; |
| 319 | }; |
| 320 | struct 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 | }; |
| 325 | struct 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) {} |
no outgoing calls
no test coverage detected