Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
runtime: include .data section in globals scan
All the globals are between _etext and _end. We were scanning only between _edata and _end, which mainly consists of the .bss section. Scanning from _etext ensures that the .data section is also included. This bug didn't result in issues in CI, but did result in a bug in the recover branch: #2331. This patch fixes this bug.
- Loading branch information