Changeset 49717 in vbox for trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
- Timestamp:
- Nov 29, 2013 10:13:51 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r49712 r49717 10849 10849 if (!(pMixedCtx->cr0 & X86_CR0_NE)) 10850 10850 { 10851 /* Old-style FPU error reporting needs some extra work. */ 10852 /** @todo don't fall back to the recompiler, but do it manually. */ 10853 return VERR_EM_INTERPRETER; 10851 /* Convert a #MF into a FERR -> IRQ 13. */ 10852 rc = PDMIsaSetIrq(pVCpu->CTX_SUFF(pVM), 13, 1, 0 /*uTagSrc*/); 10853 int rc2 = hmR0VmxAdvanceGuestRip(pVCpu, pMixedCtx, pVmxTransient); 10854 AssertRCReturn(rc2, rc2); 10855 return rc; 10854 10856 } 10855 10857
Note:
See TracChangeset
for help on using the changeset viewer.