Method
visit_f64_const
(&mut self, val: wasmparser::Ieee64)
Source from the content-addressed store, hash-verified
| 408 | } |
| 409 | |
| 410 | fn visit_f64_const(&mut self, val: wasmparser::Ieee64) -> Self::Output { |
| 411 | self.instructions.push(Instruction::Const64(val.bits() as i64)); |
| 412 | } |
| 413 | |
| 414 | fn visit_table_copy(&mut self, dst_table: u32, src_table: u32) -> Self::Output { |
| 415 | self.instructions.push(Instruction::TableCopy { dst_table, src_table }); |
Callers
nothing calls this directly
Tested by
no test coverage detected