memory: Remove unreachable return statement

Backports commit d61524486c6e503e502241a2ea834f930f98a6a1 from qemu
This commit is contained in:
Gonglei 2018-02-20 20:54:21 -05:00 committed by Lioncash
parent d25285bc78
commit 26951bf754
No known key found for this signature in database
GPG key ID: 4E3C3CC1031BA9C7

View file

@ -1118,8 +1118,6 @@ static inline bool memory_access_is_direct(MemoryRegion *mr, bool is_write)
} else {
return memory_region_is_ram(mr) || memory_region_is_romd(mr);
}
return false;
}
/**