提交 d8173e0f 编写于 作者: T ths

Fix a nit in exec.c, by Tristan Gingold.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5104 c046a42c-6fe2-441c-8c8c-71466251a162
上级 559dd74d
...@@ -286,7 +286,7 @@ static inline PageDesc *page_find_alloc(target_ulong index) ...@@ -286,7 +286,7 @@ static inline PageDesc *page_find_alloc(target_ulong index)
#if TARGET_LONG_BITS > 32 #if TARGET_LONG_BITS > 32
/* Host memory outside guest VM. For 32-bit targets we have already /* Host memory outside guest VM. For 32-bit targets we have already
excluded high addresses. */ excluded high addresses. */
if (index > ((target_ulong)L2_SIZE * L1_SIZE * TARGET_PAGE_SIZE)) if (index > ((target_ulong)L2_SIZE * L1_SIZE))
return NULL; return NULL;
#endif #endif
lp = &l1_map[index >> L2_BITS]; lp = &l1_map[index >> L2_BITS];
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册