MCPcopy Create free account
hub / github.com/explodingcamera/tinywasm / scalar_bin_op_32

Function scalar_bin_op_32

crates/parser/src/optimize.rs:650–652  ·  view source on GitHub ↗
(instr: Instruction)

Source from the content-addressed store, hash-verified

648}
649
650fn scalar_bin_op_32(instr: Instruction) -> Option<BinOp> {
651 int_bin_op_32(instr).or_else(|| float_bin_op_32(instr))
652}
653
654fn scalar_bin_op_64(instr: Instruction) -> Option<BinOp> {
655 int_bin_op_64(instr).or_else(|| float_bin_op_64(instr))

Callers

nothing calls this directly

Calls 2

int_bin_op_32Function · 0.85
float_bin_op_32Function · 0.85

Tested by

no test coverage detected