VMGeneratorOutputScope *scope = malloc(sizeof(VMGeneratorOutputScope)); // fixme these mallocs
memset(scope, 0, sizeof(VMGeneratorOutputScope));
- scope->instructionCount = 1024;
+ scope->instructionCount = 2048;
scope->instructions = malloc(scope->instructionCount * sizeof(struct VMGeneratorInstruction));
scope->nextInstructionIdx = 0;