Files
hakorune/local_tests/test_integer_only.nyash
Moe Charm 3acd2f9566 feat(phase-5.5): Complete MIR 35→26 instruction reduction project! 🎉
Phase 5-5 Final Verification Complete:
- All deprecated instructions marked and backends updated
- Test files updated for new instruction format
- Documentation fully updated with MIR 26 specification
- RefNew still appears in some outputs (recorded as future task)
- Overall functionality confirmed working

Amazing achievement:
- Original estimate: 5 weeks
- Actual completion: 1 day (24 hours)
- 35 instructions reduced to 26 (25.7% reduction)
- All ChatGPT5 specifications implemented

Future work:
- Complete removal of RefNew from all code paths
- Investigate alternative MIR builders or special cases

This marks the successful completion of the MIR instruction reduction project!
2025-08-17 15:20:14 +09:00

7 lines
108 B
Plaintext

// Test without string literals
static box Main {
main() {
local x = 42
return x
}
}