| 195 | return it->second.begin(); |
| 196 | } |
| 197 | inline ForkEdgeSet::const_iterator getForkEdgeEnd(const CallICFGNode* cs) const |
| 198 | { |
| 199 | CallInstToForkEdgesMap::const_iterator it = callinstToThreadForkEdgesMap.find(cs); |
| 200 | assert(it != callinstToThreadForkEdgesMap.end() && "call instruction not found"); |
| 201 | return it->second.end(); |
| 202 | } |
| 203 | |
| 204 | /// Get call graph edge via call instruction |
| 205 | //@{ |
no test coverage detected