| 179 | } |
| 180 | } |
| 181 | void addPred(sBB* bb) { |
| 182 | bbsIns_t r = preds.insert(bb); |
| 183 | if (r.second) bb->addSucc(this); |
| 184 | } |
| 185 | void addSucc(sBB* bb) { |
| 186 | bbsIns_t r = succs.insert(bb); |
| 187 | if (r.second) bb->addPred(this); |
nothing calls this directly
no outgoing calls
no test coverage detected