Merge pull request #12032 from liamwhite/fruit-compiler
fix apple clang build again
This commit is contained in:
commit
a134e924ff
1 changed files with 2 additions and 2 deletions
|
@ -1617,9 +1617,9 @@ void KPageTableBase::RemapPageGroup(PageLinkedList* page_list, KProcessAddress a
|
||||||
const KMemoryInfo info = it->GetMemoryInfo();
|
const KMemoryInfo info = it->GetMemoryInfo();
|
||||||
|
|
||||||
// Determine the range to map.
|
// Determine the range to map.
|
||||||
KProcessAddress map_address = std::max(info.GetAddress(), GetInteger(start_address));
|
KProcessAddress map_address = std::max<u64>(info.GetAddress(), GetInteger(start_address));
|
||||||
const KProcessAddress map_end_address =
|
const KProcessAddress map_end_address =
|
||||||
std::min(info.GetEndAddress(), GetInteger(end_address));
|
std::min<u64>(info.GetEndAddress(), GetInteger(end_address));
|
||||||
ASSERT(map_end_address != map_address);
|
ASSERT(map_end_address != map_address);
|
||||||
|
|
||||||
// Determine if we should disable head merge.
|
// Determine if we should disable head merge.
|
||||||
|
|
Loading…
Reference in a new issue