| 1331 | |
| 1332 | |
| 1333 | bool MediumLevelILInstructionBase::HasLowLevelIL() const |
| 1334 | { |
| 1335 | Ref<LowLevelILFunction> func = function->GetLowLevelIL(); |
| 1336 | if (!func) |
| 1337 | return false; |
| 1338 | return GetLowLevelILExprIndex() < func->GetExprCount(); |
| 1339 | } |
| 1340 | |
| 1341 | |
| 1342 | LowLevelILInstruction MediumLevelILInstructionBase::GetLowLevelIL() const |
nothing calls this directly
no test coverage detected