mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Fix for complex numbers
This commit is contained in:
parent
67c50608f0
commit
972e11b04f
1 changed files with 1 additions and 1 deletions
2
gc.c
2
gc.c
|
@ -581,7 +581,7 @@ gc_heap *gc_sweep_fixed_size(gc_heap * h, int heap_type, gc_thread_data *thd)
|
|||
fprintf(stderr, "sweep: invalid object at %p", p);
|
||||
exit(1);
|
||||
}
|
||||
if (type_of(p) > 20) {
|
||||
if (type_of(p) > 21) {
|
||||
fprintf(stderr, "sweep: invalid object tag %d at %p", type_of(p), p);
|
||||
exit(1);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue