| 3520 | |
| 3521 | |
| 3522 | ExprId LowLevelILFunction::Intrinsic(const vector<RegisterOrFlag>& outputs, uint32_t intrinsic, |
| 3523 | const vector<ExprId>& params, uint32_t flags, const ILSourceLocation& loc) |
| 3524 | { |
| 3525 | return AddExprWithLocation(LLIL_INTRINSIC, loc, 0, flags, outputs.size(), AddRegisterOrFlagList(outputs), intrinsic, |
| 3526 | AddExprWithLocation(LLIL_CALL_PARAM, loc, 0, 0, params.size(), AddOperandList(params))); |
| 3527 | } |
| 3528 | |
| 3529 | |
| 3530 | ExprId LowLevelILFunction::IntrinsicSSA(const vector<SSARegisterOrFlag>& outputs, uint32_t intrinsic, |
no test coverage detected