Changeset 65930 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Mar 3, 2017 1:14:22 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r65531 r65930 1228 1228 */ 1229 1229 # if PGM_SHW_TYPE == PGM_TYPE_32BIT 1230 const unsigned iPDDst = ( GCPtrPage >> SHW_PD_SHIFT) & SHW_PD_MASK;1230 const unsigned iPDDst = (uint32_t)GCPtrPage >> SHW_PD_SHIFT; 1231 1231 PX86PDE pPdeDst = pgmShwGet32BitPDEPtr(pVCpu, GCPtrPage); 1232 1232 … … 1244 1244 1245 1245 # elif PGM_SHW_TYPE == PGM_TYPE_PAE 1246 const unsigned iPdpt = ( GCPtrPage >> X86_PDPT_SHIFT);1246 const unsigned iPdpt = (uint32_t)GCPtrPage >> X86_PDPT_SHIFT; 1247 1247 PX86PDPT pPdptDst = pgmShwGetPaePDPTPtr(pVCpu); 1248 1248
Note:
See TracChangeset
for help on using the changeset viewer.