forked from OSchip/llvm-project
merge functions with multiple function decls if they have the same name.
llvm-svn: 44505
This commit is contained in:
parent
e15d0dd63f
commit
c5b3aab66b
|
@ -40,6 +40,13 @@ llvm::Constant *CodeGenModule::GetAddrOfGlobalDecl(const ValueDecl *D) {
|
|||
const llvm::Type *Ty = getTypes().ConvertType(ASTTy);
|
||||
if (isa<FunctionDecl>(D)) {
|
||||
const llvm::FunctionType *FTy = cast<llvm::FunctionType>(Ty);
|
||||
|
||||
// Check to see if the function already exists.
|
||||
if (llvm::Function *F = getModule().getFunction(D->getName())) {
|
||||
// If so, make sure it is the correct type.
|
||||
return llvm::ConstantExpr::getBitCast(F, llvm::PointerType::get(FTy));
|
||||
}
|
||||
|
||||
// FIXME: param attributes for sext/zext etc.
|
||||
return Entry = new llvm::Function(FTy, llvm::Function::ExternalLinkage,
|
||||
D->getName(), &getModule());
|
||||
|
|
Loading…
Reference in New Issue