| 484 | |
| 485 | |
| 486 | ExprId LowLevelILFunction::GetExprForRegisterOrConstant(const BNRegisterOrConstant& operand, size_t size) |
| 487 | { |
| 488 | if (operand.constant) |
| 489 | return AddExpr(LLIL_CONST, size, 0, operand.value); |
| 490 | return AddExpr(LLIL_REG, size, 0, operand.reg); |
| 491 | } |
| 492 | |
| 493 | |
| 494 | ExprId LowLevelILFunction::GetNegExprForRegisterOrConstant(const BNRegisterOrConstant& operand, size_t size) |
no outgoing calls
no test coverage detected