Allocator: Stop parsing more eagerly

This is a soft-revert of eaf83aa. That change is no longer needed, since the
stack special case is handled externally now.
This commit is contained in:
Tony Wasserka 2024-03-12 10:49:30 +01:00
parent dce9f651fd
commit f43fe5fd63

View File

@ -274,7 +274,7 @@ namespace FEXCore::Allocator {
if (c == ' ') {
STEAL_LOG("[%d] ParseEnd; RegionBegin: %016lX RegionEnd: %016lX\n", __LINE__, RegionBegin, RegionEnd);
if (RegionEnd > End) {
if (RegionEnd >= End) {
// Early return if we are completely beyond the allocation space.
return Regions;
}