| 183 | } |
| 184 | |
| 185 | inline const Function* getRealDefFun(const Function* fun) const |
| 186 | { |
| 187 | auto it = funToRealDefFun.find(fun); |
| 188 | if (it == funToRealDefFun.end()) return nullptr; |
| 189 | else return it->second; |
| 190 | } |
| 191 | |
| 192 | inline const FunctionSet& getFunctionSet() const |
| 193 | { |
no test coverage detected