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

@@ -84,7 +84,7 @@ GravityValue gravityNewConstant(GravityType type) {
return newValue;
}
GravityValue newIntConstant(GravityType intType, int64_t value) {
GravityValue gravityNewIntConstant(GravityType intType, int64_t value) {
assert(intType->typeKind == GravityIntTypeKind);
GravityValue newValue = gravityNewConstant(intType);