| 486 | } |
| 487 | |
| 488 | void N64Recomp::CGenerator::emit_check_fr(int fpr) const { |
| 489 | fmt::print(output_file, "CHECK_FR(ctx, {});\n ", fpr); |
| 490 | } |
| 491 | |
| 492 | void N64Recomp::CGenerator::emit_check_nan(int fpr, bool is_double) const { |
| 493 | fmt::print(output_file, "NAN_CHECK(ctx->f{}.{}); ", fpr, is_double ? "d" : "fl"); |
no outgoing calls
no test coverage detected