| 110 | } |
| 111 | |
| 112 | std::set<const Function *> |
| 113 | TestTypeVirtSolverHandler::get(const Value *V) const { |
| 114 | auto Iter = Map.find(V); |
| 115 | if (Iter == Map.end()) |
| 116 | return {}; |
| 117 | |
| 118 | return Iter->second; |
| 119 | } |
| 120 | |
| 121 | void TestTypeVirtSolverHandler::handle(const GlobalVariable &GV) { |
| 122 | SmallVector<MDNode *, 2> MDTypes; |