| 343 | |
| 344 | |
| 345 | ExprId LowLevelILFunction::Goto(BNLowLevelILLabel& label, const ILSourceLocation& loc) |
| 346 | { |
| 347 | if (loc.valid) |
| 348 | return BNLowLevelILGotoWithLocation(m_object, &label, loc.address, loc.sourceOperand); |
| 349 | return BNLowLevelILGoto(m_object, &label); |
| 350 | } |
| 351 | |
| 352 | |
| 353 | ExprId LowLevelILFunction::If(ExprId operand, BNLowLevelILLabel& t, BNLowLevelILLabel& f, const ILSourceLocation& loc) |
no outgoing calls
no test coverage detected