mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-23 00:24:11 -08:00
C: fix bug in GC
This commit is contained in:
parent
90e00f7eb4
commit
a260067fde
|
@ -322,6 +322,7 @@ public final class GC {
|
||||||
Address newRegionStart = heapAddress().add(currentRegionIndex * regionSize());
|
Address newRegionStart = heapAddress().add(currentRegionIndex * regionSize());
|
||||||
object = newRegionStart.add(currentRegion.start - 1).toStructure();
|
object = newRegionStart.add(currentRegion.start - 1).toStructure();
|
||||||
currentRegionEnd = newRegionStart.add(regionSize());
|
currentRegionEnd = newRegionStart.add(regionSize());
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (lastFreeSpace != null) {
|
if (lastFreeSpace != null) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user