* Find the instruction for the given offset. */
| 126 | * Find the instruction for the given offset. |
| 127 | */ |
| 128 | Instr *InstrSet::find(off_t offset) const |
| 129 | { |
| 130 | Instr *I = lower_bound(offset); |
| 131 | return (I == nullptr || (off_t)I->offset != offset? nullptr: I); |
| 132 | } |
| 133 |
no outgoing calls
no test coverage detected