| 49 | |
| 50 | |
| 51 | void which_cancel( struct cell *t, branch_bm_t cancel_bm ) |
| 52 | { |
| 53 | int i; |
| 54 | |
| 55 | for( i=t->first_branch ; i<t->nr_of_outgoings ; i++ ) { |
| 56 | if (should_cancel_branch(t, i)) |
| 57 | BRANCH_BM_SET_IDX( cancel_bm, i); |
| 58 | } |
| 59 | |
| 60 | LM_DBG("branches to cancel ["BRANCH_BM_SPECS"], range %d:%d\n", |
| 61 | BRANCH_BM_ARGS(cancel_bm),t->first_branch,t->nr_of_outgoings-1); |
| 62 | |
| 63 | } |
| 64 | |
| 65 | |
| 66 | /* cancel branches scheduled for deletion */ |
no test coverage detected