| 498 | } |
| 499 | |
| 500 | inline IntraICFGNode* getIntraBlock(const Instruction* inst) |
| 501 | { |
| 502 | InstToBlockNodeMapTy::const_iterator it = InstToBlockNodeMap.find(inst); |
| 503 | if (it == InstToBlockNodeMap.end()) |
| 504 | return nullptr; |
| 505 | return it->second; |
| 506 | } |
| 507 | |
| 508 | /// Get/Add a function entry node |
| 509 | inline FunEntryICFGNode* getFunEntryBlock(const Function* fun) |
no test coverage detected