Skip to content
Snippets Groups Projects
Unverified Commit 628153cc authored by Mat M's avatar Mat M Committed by GitHub
Browse files

Merge pull request #2316 from ReinUsesLisp/fixup-process

process: Fix up compilation
parents 29df6bbb 592a24ae
No related branches found
No related tags found
No related merge requests found
......@@ -234,7 +234,7 @@ void Process::LoadModule(CodeSet module_, VAddr base_addr) {
MapSegment(module_.RODataSegment(), VMAPermission::Read, MemoryState::CodeData);
MapSegment(module_.DataSegment(), VMAPermission::ReadWrite, MemoryState::CodeData);
code_memory_size += module_.memory->size();
code_memory_size += module_.memory.size();
// Clear instruction cache in CPU JIT
system.InvalidateCpuInstructionCaches();
......
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