- Timestamp:
- Jul 6, 2016 11:03:09 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r62040 r62044 4843 4843 do 4844 4844 { 4845 if (pMixedCtx->gdtr.pGdt & 0xffffffff00000000)4845 if (pMixedCtx->gdtr.pGdt & UINT64_C(0xffffffff00000000)) 4846 4846 break; 4847 if (pMixedCtx->idtr.pIdt & 0xffffffff00000000)4847 if (pMixedCtx->idtr.pIdt & UINT64_C(0xffffffff00000000)) 4848 4848 break; 4849 if (pMixedCtx->ldtr.u64Base & 0xffffffff00000000)4849 if (pMixedCtx->ldtr.u64Base & UINT64_C(0xffffffff00000000)) 4850 4850 break; 4851 if (pMixedCtx->tr.u64Base & 0xffffffff00000000)4851 if (pMixedCtx->tr.u64Base & UINT64_C(0xffffffff00000000)) 4852 4852 break; 4853 if (pMixedCtx->tr.u64Base & 0xffffffff00000000)4853 if (pMixedCtx->tr.u64Base & UINT64_C(0xffffffff00000000)) 4854 4854 break; 4855 if (pMixedCtx->es.u64Base & 0xffffffff00000000)4855 if (pMixedCtx->es.u64Base & UINT64_C(0xffffffff00000000)) 4856 4856 break; 4857 if (pMixedCtx->cs.u64Base & 0xffffffff00000000)4857 if (pMixedCtx->cs.u64Base & UINT64_C(0xffffffff00000000)) 4858 4858 break; 4859 if (pMixedCtx->ss.u64Base & 0xffffffff00000000)4859 if (pMixedCtx->ss.u64Base & UINT64_C(0xffffffff00000000)) 4860 4860 break; 4861 if (pMixedCtx->ds.u64Base & 0xffffffff00000000)4861 if (pMixedCtx->ds.u64Base & UINT64_C(0xffffffff00000000)) 4862 4862 break; 4863 if (pMixedCtx->fs.u64Base & 0xffffffff00000000)4863 if (pMixedCtx->fs.u64Base & UINT64_C(0xffffffff00000000)) 4864 4864 break; 4865 if (pMixedCtx->gs.u64Base & 0xffffffff00000000)4865 if (pMixedCtx->gs.u64Base & UINT64_C(0xffffffff00000000)) 4866 4866 break; 4867 4867 /* All good, bases are 32-bit. */
Note:
See TracChangeset
for help on using the changeset viewer.