fix incorrect bytecode writing for deref-space-ptr

This commit is contained in:
Ryan Fleury
2025-01-28 10:42:41 -08:00
parent 4cc5f636fe
commit 2a1ab9b3be
+6
View File
@@ -1581,6 +1581,12 @@ e_bytecode_from_oplist(Arena *arena, E_OpList *oplist)
// rjf: advance
ptr = next_ptr;
}break;
case E_IRExtKind_DerefSpacePtr:
{
ptr[0] = opcode;
ptr += 1;
}break;
}
}