use int128_get64 in memory_unmap

This fixes build errors introduced by bbbc7856ac
This commit is contained in:
Takacs, Philipp 2023-04-17 17:33:37 +02:00
parent bbbc7856ac
commit 7bb1501bc2

View File

@ -155,7 +155,7 @@ void memory_unmap(struct uc_struct *uc, MemoryRegion *mr)
if (uc->cpu) { if (uc->cpu) {
// We also need to remove all tb cache // We also need to remove all tb cache
uc->uc_invalidate_tb(uc, mr->addr, mr->size); uc->uc_invalidate_tb(uc, mr->addr, int128_get64(mr->size));
// Make sure all pages associated with the MemoryRegion are flushed // Make sure all pages associated with the MemoryRegion are flushed
// Only need to do this if we are in a running state // Only need to do this if we are in a running state