* @brief Returns the module name for the given function using debug * information. * * If there is no module name assigned to the given function, the empty string * is returned. */
| 819 | * is returned. |
| 820 | */ |
| 821 | std::string Module::getDebugModuleNameForFunc(ShPtr<Function> func) const { |
| 822 | return config->getDebugModuleNameForFunc(func->getInitialName()); |
| 823 | } |
| 824 | |
| 825 | /** |
| 826 | * @brief Has the given function assigned a module name from debug information? |