alloc, load, store, and ret are all in the IR

This commit is contained in:
2026-08-03 21:24:29 +10:00
parent 15709b65a6
commit a452c323e1
9 changed files with 79 additions and 10 deletions

View File

@@ -5,6 +5,7 @@ char* gravityOpcodeToCStr(GravityOpcode opcode) {
case GravityOpcodeAlloc: return "alloc";
case GravityOpcodeStore: return "store";
case GravityOpcodeLoad: return "load";
case GravityOpcodeRet: return "ret";
default: return "fixme";
}
}