Browse Source
Merge pull request #8491 from Morph1984/extra-assert
KPageTable: Remove extraneous assert
pull/15/merge
bunnei
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
1 deletions
-
src/core/hle/kernel/k_page_table.cpp
|
|
|
@ -65,7 +65,6 @@ ResultCode KPageTable::InitializeForProcess(FileSys::ProgramAddressSpaceType as_ |
|
|
|
std::size_t alias_region_size{GetSpaceSize(KAddressSpaceInfo::Type::Alias)}; |
|
|
|
std::size_t heap_region_size{GetSpaceSize(KAddressSpaceInfo::Type::Heap)}; |
|
|
|
|
|
|
|
ASSERT(start <= code_addr); |
|
|
|
ASSERT(code_addr < code_addr + code_size); |
|
|
|
ASSERT(code_addr + code_size - 1 <= end - 1); |
|
|
|
|
|
|
|
|