Changeset 74798 in vbox for trunk/src/recompiler
- Timestamp:
- Oct 12, 2018 12:25:41 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/VBoxRecompiler.c
r74791 r74798 1166 1166 && !VMCPU_FF_IS_ANY_SET(pVCpu, VMCPU_FF_ALL_REM_MASK)) 1167 1167 continue; 1168 RTLogPrintf("remR3RunLoggingStep: rc=VINF_SUCCESS w/ FFs (%#x/%# x)\n",1169 pVM->fGlobalForcedActions, pVCpu->fLocalForcedActions);1168 RTLogPrintf("remR3RunLoggingStep: rc=VINF_SUCCESS w/ FFs (%#x/%#RX64)\n", 1169 pVM->fGlobalForcedActions, (uint64_t)pVCpu->fLocalForcedActions); 1170 1170 rc = VINF_SUCCESS; 1171 1171 break; … … 1200 1200 continue; 1201 1201 1202 RTLogPrintf("remR3RunLoggingStep: rc=VINF_SUCCESS w/ FFs (%#x/%# x)\n",1203 pVM->fGlobalForcedActions, pVCpu->fLocalForcedActions);1202 RTLogPrintf("remR3RunLoggingStep: rc=VINF_SUCCESS w/ FFs (%#x/%#RX64)\n", 1203 pVM->fGlobalForcedActions, (uint64_t)pVCpu->fLocalForcedActions); 1204 1204 rc = VINF_SUCCESS; 1205 1205 }
Note:
See TracChangeset
for help on using the changeset viewer.