| 129 | } |
| 130 | |
| 131 | bool RDSpace::isEntryFunction(Function &F) const { |
| 132 | return std::find(EntryFuncs.begin(), EntryFuncs.end(), &F) != |
| 133 | EntryFuncs.end(); |
| 134 | } |
| 135 | |
| 136 | std::set<Instruction *> RDSpace::getAliases(Instruction &I) const { |
| 137 | auto Acc = AliasMap.find(&I); |
no test coverage detected