| 687 | } |
| 688 | |
| 689 | FunctionPtr Module::findFunctionByMangledNameHash ( uint64_t hash ) const { |
| 690 | return functions.find(hash); |
| 691 | } |
| 692 | |
| 693 | FunctionPtr Module::findFunction ( const string & mangledName ) const { |
| 694 | return functions.find(mangledName); |
no test coverage detected