| 1293 | { |
| 1294 | mop_t* mop = nullptr; |
| 1295 | int idaapi visit_mop(mop_t* op) { |
| 1296 | if (op->is_reg() || op->t == mop_S) { |
| 1297 | mop = op; |
| 1298 | return 1; |
| 1299 | } |
| 1300 | return 0; |
| 1301 | } |
| 1302 | }; |
| 1303 | |
| 1304 | bool inlReplace(mbl_array_t* mba, const sInline* inl, ea_t headEa, const path_t& path, mblockset_t& removeBlocks) |
nothing calls this directly
no outgoing calls
no test coverage detected