Changeset 10330 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jul 7, 2008 2:21:22 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r10299 r10330 581 581 { 582 582 val = pCtx->cr0; 583 if (CPUMIsGuestFPUStateActive(pVM) == false) 584 { 583 if (!CPUMIsGuestFPUStateActive(pVM)) 584 { 585 Assert(!pVM->hwaccm.s.svm.fResumeVM); 585 586 /* Always use #NM exceptions to load the FPU/XMM state on demand. */ 586 587 val |= X86_CR0_TS | X86_CR0_ET | X86_CR0_NE | X86_CR0_MP; … … 588 589 else 589 590 { 590 Assert(pVM->hwaccm.s.svm.fResumeVM == true);591 591 /** @todo check if we support the old style mess correctly. */ 592 592 if (!(val & X86_CR0_NE))
Note:
See TracChangeset
for help on using the changeset viewer.