summaryrefslogtreecommitdiff
path: root/exec.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2016-06-29 15:48:03 -0700
committerRichard Henderson <rth@twiddle.net>2016-10-26 08:29:00 -0700
commit258dfaaad05a5fbe32a142b794e1df3e16501d0e (patch)
tree8a7fddb5f3d0b0f71ade22e9c2ada6ee038dc757 /exec.c
parent84bca3927b36fb1d9a2ca85cbbdf9023d2b84678 (diff)
downloadqemu-258dfaaad05a5fbe32a142b794e1df3e16501d0e.tar.gz
exec: Avoid direct references to Int128 parts
Reviewed-by: Emilio G. Cota <cota@braap.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'exec.c')
-rw-r--r--exec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/exec.c b/exec.c
index 587b489eef..4c84389b56 100644
--- a/exec.c
+++ b/exec.c
@@ -352,9 +352,9 @@ static inline bool section_covers_addr(const MemoryRegionSection *section,
/* Memory topology clips a memory region to [0, 2^64); size.hi > 0 means
* the section must cover the entire address space.
*/
- return section->size.hi ||
+ return int128_gethi(section->size) ||
range_covers_byte(section->offset_within_address_space,
- section->size.lo, addr);
+ int128_getlo(section->size), addr);
}
static MemoryRegionSection *phys_page_find(PhysPageEntry lp, hwaddr addr,