Rename functions

This commit is contained in:
Ivan 2017-11-09 21:59:26 +03:00
parent 5426ffbd3d
commit c839e9dfd0
5 changed files with 18 additions and 18 deletions

View file

@ -568,7 +568,7 @@ void DtoDeclareFunction(FuncDeclaration *fdecl) {
applyFuncDeclUDAs(fdecl, irFunc);
if(irFunc->dynamicCompile) {
declareRuntimeCompiledFunction(gIR, irFunc);
declareDynamicCompiledFunction(gIR, irFunc);
}
if (irFunc->targetCpuOverridden ||
@ -946,7 +946,7 @@ void DtoDefineFunction(FuncDeclaration *fd, bool linkageAvailableExternally) {
SCOPE_EXIT {
if (irFunc->dynamicCompile) {
defineRuntimeCompiledFunction(gIR, irFunc);
defineDynamicCompiledFunction(gIR, irFunc);
}
};