| 13 | namespace ftg { |
| 14 | |
| 15 | DebugInfoMap::DebugInfoMap(const SourceCollection &SC) |
| 16 | : Mapper(std::make_unique<CalledFunctionMacroMapper>()) { |
| 17 | for (auto *Unit : SC.getASTUnits()) { |
| 18 | if (!Unit) |
| 19 | continue; |
| 20 | |
| 21 | update(*Unit); |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | ASTDefNode *DebugInfoMap::getASTDefNode(const llvm::Value &V, int OIdx) { |
| 26 | ASTDefNode *Result = nullptr; |
nothing calls this directly
no test coverage detected