Changeset 102471 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Dec 5, 2023 12:46:45 PM (17 months ago)
- svn:sync-xref-src-repo-rev:
- 160614
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMMc.h
r102448 r102471 208 208 do { pVCpu->cpum.GstCtx.eflags.u = (a_EFlags); Assert(pVCpu->cpum.GstCtx.eflags.u & X86_EFL_1); } while (0) 209 209 210 #define IEM_MC_ASSIGN_TO_SMALLER(a_VarOrArg, a_CVariableOrConst) (a_VarOrArg) = (a_CVariableOrConst) 210 /** ASSUMES the source variable not used after this statement. */ 211 #define IEM_MC_ASSIGN_TO_SMALLER(a_VarDst, a_VarSrcEol) (a_VarDst) = (a_VarSrcEol) 211 212 212 213 #define IEM_MC_FETCH_GREG_U8(a_u8Dst, a_iGReg) (a_u8Dst) = iemGRegFetchU8(pVCpu, (a_iGReg))
Note:
See TracChangeset
for help on using the changeset viewer.