| 559 | } |
| 560 | |
| 561 | void N64Recomp::CGenerator::emit_comment(const std::string& comment) const { |
| 562 | fmt::print(output_file, "// {}\n", comment); |
| 563 | } |
| 564 | |
| 565 | void N64Recomp::CGenerator::process_binary_op(const BinaryOp& op, const InstructionContext& ctx) const { |
| 566 | // Thread local variables to prevent allocations when possible. |
no outgoing calls
no test coverage detected