mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
Objective C functions may use a magic '\1' on the name. Handle that when
dealing with them in the MCJIT. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131601 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -102,7 +102,12 @@ void *MCJIT::getPointerToFunction(Function *F) {
|
||||
return Addr;
|
||||
}
|
||||
|
||||
Twine Name = TM->getMCAsmInfo()->getGlobalPrefix() + F->getName();
|
||||
// FIXME: Should we be using the mangler for this? Probably.
|
||||
StringRef BaseName = F->getName();
|
||||
if (BaseName[0] == '\1')
|
||||
BaseName = BaseName.substr(1);
|
||||
else
|
||||
Twine Name = TM->getMCAsmInfo()->getGlobalPrefix() + BaseName;
|
||||
return (void*)Dyld.getSymbolAddress(Name.str());
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user