| 2304 | |
| 2305 | |
| 2306 | ExprId MediumLevelILFunction::SetVarSSASplit( |
| 2307 | size_t size, const SSAVariable& high, const SSAVariable& low, ExprId src, const ILSourceLocation& loc) |
| 2308 | { |
| 2309 | return AddExprWithLocation(MLIL_SET_VAR_SPLIT_SSA, loc, size, high.var.ToIdentifier(), high.version, |
| 2310 | low.var.ToIdentifier(), low.version, src); |
| 2311 | } |
| 2312 | |
| 2313 | |
| 2314 | ExprId MediumLevelILFunction::SetVarAliased(size_t size, const Variable& dest, size_t newMemVersion, |