- Timestamp:
- Mar 20, 2007 9:03:10 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r1406 r1585 514 514 { 515 515 int rc = VINF_SUCCESS; 516 uint64_t exitCode = SVM_EXIT_INVALID;516 uint64_t exitCode = (uint64_t)SVM_EXIT_INVALID; 517 517 SVM_VMCB *pVMCB; 518 518 bool fForceTLBFlush = false; … … 652 652 exitCode = pVMCB->ctrl.u64ExitCode; 653 653 654 if (exitCode == SVM_EXIT_INVALID) /* Invalid guest state. */654 if (exitCode == (uint64_t)SVM_EXIT_INVALID) /* Invalid guest state. */ 655 655 { 656 656 HWACCMDumpRegs(pCtx);
Note:
See TracChangeset
for help on using the changeset viewer.