Changeset 107026 in vbox for trunk/src/VBox/VMM/VMMR3/NEMR3Native-linux-armv8.cpp
- Timestamp:
- Nov 18, 2024 2:21:58 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/NEMR3Native-linux-armv8.cpp
r104729 r107026 555 555 pVCpu->cpum.GstCtx.aGRegs[uReg].x = fSignExtend ? (int64_t)u64Val : u64Val; 556 556 else 557 pVCpu->cpum.GstCtx.aGRegs[uReg]. w = fSignExtend ? (int32_t)u64Val : u64Val; /** @todo Does this clear the upper half on real hardware? */557 pVCpu->cpum.GstCtx.aGRegs[uReg].x = (uint64_t)(fSignExtend ? (int32_t)u64Val : (uint32_t)u64Val); 558 558 559 559 /* Mark the register as not extern anymore. */
Note:
See TracChangeset
for help on using the changeset viewer.