revert some changes

This commit is contained in:
Rick Guo
2026-03-13 10:43:22 +08:00
parent 625a059756
commit 140d8e5878
2 changed files with 3 additions and 4 deletions
@@ -449,8 +449,7 @@ func startMark(root uintptr) {
if gcStateOf(referencedBlock) == blockStateFree {
// The to-be-marked object doesn't actually exist.
// This could either be a dangling pointer (oops!) but most likely
// just a false positive.
// This is probably a false positive.
continue
}
+2 -2
View File
@@ -57,8 +57,8 @@ SECTIONS
} >IRAM
}
_globals_start = ALIGN(_sdata, 4);
_globals_end = ALIGN(_ebss, 4);
_globals_start = _sdata;
_globals_end = _ebss;
_heap_start = _ebss;
_heap_end = ORIGIN(DRAM) + LENGTH(DRAM);