| 351 | |
| 352 | |
| 353 | ExprId LowLevelILFunction::If(ExprId operand, BNLowLevelILLabel& t, BNLowLevelILLabel& f, const ILSourceLocation& loc) |
| 354 | { |
| 355 | if (loc.valid) |
| 356 | return BNLowLevelILIfWithLocation(m_object, operand, &t, &f, loc.address, loc.sourceOperand); |
| 357 | return BNLowLevelILIf(m_object, operand, &t, &f); |
| 358 | } |
| 359 | |
| 360 | |
| 361 | void LowLevelILFunction::MarkLabel(BNLowLevelILLabel& label) |
no outgoing calls
no test coverage detected