| 294 | return (I->offset == 0? nullptr: I); |
| 295 | } |
| 296 | Instr *next() const |
| 297 | { |
| 298 | Instr *I = (Instr *)this+1; |
| 299 | return (I->offset == 0? nullptr: I); |
| 300 | } |
| 301 | Instr *pred() const |
| 302 | { |
| 303 | Instr *I = (Instr *)this-1; |
no outgoing calls
no test coverage detected