Get/Add a call node
| 481 | |
| 482 | /// Get/Add a call node |
| 483 | inline CallICFGNode* getCallBlock(const Instruction* cs) |
| 484 | { |
| 485 | CSToCallNodeMapTy::const_iterator it = CSToCallNodeMap.find(cs); |
| 486 | if (it == CSToCallNodeMap.end()) |
| 487 | return nullptr; |
| 488 | return it->second; |
| 489 | } |
| 490 | |
| 491 | /// Get/Add a return node |
| 492 | inline RetICFGNode* getRetBlock(const Instruction* cs) |
no test coverage detected