Changeset 41732 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Jun 14, 2012 11:57:45 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78540
- Location:
- trunk/src/VBox/VMM/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/CSAMInternal.h
r41678 r41732 271 271 } 272 272 #ifdef IN_RC 273 return (RTRCPTR)((uint8_t *)pBranchInstrGC + pCpu-> opsize+ disp);273 return (RTRCPTR)((uint8_t *)pBranchInstrGC + pCpu->cbInstr + disp); 274 274 #else 275 return pBranchInstrGC + pCpu-> opsize+ disp;275 return pBranchInstrGC + pCpu->cbInstr + disp; 276 276 #endif 277 277 } -
trunk/src/VBox/VMM/include/PATMInternal.h
r41678 r41732 781 781 } 782 782 #ifdef IN_RC 783 return (RTRCPTR)((uint8_t *)pBranchInstrGC + pCpu-> opsize+ disp);783 return (RTRCPTR)((uint8_t *)pBranchInstrGC + pCpu->cbInstr + disp); 784 784 #else 785 return pBranchInstrGC + pCpu-> opsize+ disp;785 return pBranchInstrGC + pCpu->cbInstr + disp; 786 786 #endif 787 787 }
Note:
See TracChangeset
for help on using the changeset viewer.