1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Fix a compilation error.

llvm-svn: 16335
This commit is contained in:
Reid Spencer 2004-09-14 15:42:11 +00:00
parent 7bd9d86b65
commit 73742a57c4

View File

@ -39,7 +39,7 @@ MemoryBlock Memory::AllocateRWX(unsigned NumBytes) {
}
MemoryBlock result;
result.Address = pa;
result.AllocSize = NumPages*pageSize;
result.Size = NumPages*pageSize;
return result;
}