1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-27 15:43:17 +00:00

Remove printf in regalloc.c

This should never be hit unless there is a
bug in the compiler, but should be removed.
This commit is contained in:
Calvin Rose 2019-09-15 18:17:09 -05:00
parent 97d874f16b
commit 16127fc55c

View File

@ -144,7 +144,6 @@ void janetc_regalloc_free(JanetcRegisterAllocator *ra, int32_t reg) {
int32_t janetc_regalloc_temp(JanetcRegisterAllocator *ra, JanetcRegisterTemp nth) {
int32_t oldmax = ra->max;
if (ra->regtemps & (1 << nth)) {
printf("regtemp %d attempted\n", nth);
janet_exit("regtemp already allocated");
}
ra->regtemps |= 1 << nth;