Get/Add a return node
| 490 | |
| 491 | /// Get/Add a return node |
| 492 | inline RetICFGNode* getRetBlock(const Instruction* cs) |
| 493 | { |
| 494 | CSToRetNodeMapTy::const_iterator it = CSToRetNodeMap.find(cs); |
| 495 | if (it == CSToRetNodeMap.end()) |
| 496 | return nullptr; |
| 497 | return it->second; |
| 498 | } |
| 499 | |
| 500 | inline IntraICFGNode* getIntraBlock(const Instruction* inst) |
| 501 | { |
no test coverage detected