Skip to content
Snippets Groups Projects
Commit 7e4d0e7a authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

made text-fill-in bit ignore unpinned scoops

parent 20ca4bb7
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -574,6 +574,12 @@ void ZiprImpl_t::FindFreeRanges(const std::string &name)
RangeAddress_t this_end = this_scoop->GetEnd()->GetVirtualOffset(),
next_start = 0;
if(this_scoop->GetStart()->GetVirtualOffset()==0)
{
// unpinned scoops can get ignored.
continue;
}
if (m_verbose)
cout << "There's a scoop between " << std::hex
<< this_scoop->GetStart()->GetVirtualOffset()
......@@ -654,6 +660,12 @@ void ZiprImpl_t::FindFreeRanges(const std::string &name)
DataScoop_t* scoop=*it;
RangeAddress_t end=scoop->GetEnd()->GetVirtualOffset();
if(scoop->GetStart()->GetVirtualOffset()==0)
{
// unpinned scoops can get ignored.
continue;
}
if(end >= max_addr)
{
max_addr=end+1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment