| 24 | |
| 25 | |
| 26 | static inline ExprId SetRegisterOrBranch(LowLevelILFunction& il, enum Register reg, ExprId expr, uint32_t flags=0) |
| 27 | { |
| 28 | if (reg == REG_PC) |
| 29 | return il.Jump(expr); |
| 30 | else |
| 31 | return il.SetRegister(get_register_size(reg), reg, expr, flags); |
| 32 | } |
| 33 | |
| 34 | |
| 35 | static inline ExprId ReadRegisterOrPointer(LowLevelILFunction& il, const InstructionOperand& op, size_t addr) |
no test coverage detected