| 695 | } |
| 696 | |
| 697 | FunctionPtr Module::findGeneric ( const string & mangledName ) const { |
| 698 | return generics.find(mangledName); |
| 699 | } |
| 700 | |
| 701 | FunctionPtr Module::findUniqueFunction ( const string & mangledName ) const { |
| 702 | auto it = functionsByName.find(hash64z(mangledName.c_str())); |
no test coverage detected