return true;
// Create the alias with no name.
- auto *Alias = new llvm::GlobalAlias(
- AliasType->getElementType(), Linkage, "", Aliasee, &getModule());
+ auto *Alias = new llvm::GlobalAlias(AliasType->getElementType(), 0, Linkage,
+ "", Aliasee);
// Switch any previous uses to the alias.
if (Entry) {
}
}
if (0 == SelValue) {
- SelValue = new llvm::GlobalAlias(SelectorTy->getElementType(),
- llvm::GlobalValue::PrivateLinkage,
- ".objc_selector_"+Sel.getAsString(), NULL,
- &TheModule);
+ SelValue = new llvm::GlobalAlias(
+ SelectorTy->getElementType(), 0, llvm::GlobalValue::PrivateLinkage,
+ ".objc_selector_" + Sel.getAsString(), &TheModule);
Types.push_back(TypedSelector(TypeEncoding, SelValue));
}
// super_class pointer from either the class or metaclass structure.
if (IsClassMessage) {
if (!MetaClassPtrAlias) {
- MetaClassPtrAlias = new llvm::GlobalAlias(IdTy->getElementType(),
- llvm::GlobalValue::InternalLinkage, ".objc_metaclass_ref" +
- Class->getNameAsString(), NULL, &TheModule);
+ MetaClassPtrAlias = new llvm::GlobalAlias(
+ IdTy->getElementType(), 0, llvm::GlobalValue::InternalLinkage,
+ ".objc_metaclass_ref" + Class->getNameAsString(), &TheModule);
}
ReceiverClass = MetaClassPtrAlias;
} else {
if (!ClassPtrAlias) {
- ClassPtrAlias = new llvm::GlobalAlias(IdTy->getElementType(),
- llvm::GlobalValue::InternalLinkage, ".objc_class_ref" +
- Class->getNameAsString(), NULL, &TheModule);
+ ClassPtrAlias = new llvm::GlobalAlias(
+ IdTy->getElementType(), 0, llvm::GlobalValue::InternalLinkage,
+ ".objc_class_ref" + Class->getNameAsString(), &TheModule);
}
ReceiverClass = ClassPtrAlias;
}
// Create the new alias itself, but don't set a name yet.
auto *GA = new llvm::GlobalAlias(
- cast<llvm::PointerType>(Aliasee->getType())->getElementType(),
+ cast<llvm::PointerType>(Aliasee->getType())->getElementType(), 0,
llvm::Function::ExternalLinkage, "",
- &getGlobalObjectInExpr(Diags, AA, Aliasee), &getModule());
+ &getGlobalObjectInExpr(Diags, AA, Aliasee));
if (Entry) {
if (GA->getAliasee() == Entry) {
IdentifierInfo *Name = I->first;
llvm::GlobalValue *Val = I->second;
if (Val && !getModule().getNamedValue(Name->getName()))
- addUsedGlobal(new llvm::GlobalAlias(
- Val->getType()->getElementType(), Val->getLinkage(), Name->getName(),
- cast<llvm::GlobalObject>(Val), &getModule()));
+ addUsedGlobal(new llvm::GlobalAlias(Name->getName(),
+ cast<llvm::GlobalObject>(Val)));
}
}
if (VD->hasDefinition()) {
InitIsInitFunc = true;
if (InitFunc)
- Init = new llvm::GlobalAlias(InitFunc->getType()->getElementType(),
- Var->getLinkage(), InitFnName.str(),
- InitFunc, &CGM.getModule());
+ Init = new llvm::GlobalAlias(Var->getLinkage(), InitFnName.str(),
+ InitFunc);
} else {
// Emit a weak global function referring to the initialization function.
// This function will not exist if the TU defining the thread_local
// Step 3: Emit ISR vector alias.
unsigned Num = attr->getNumber() / 2;
- new llvm::GlobalAlias(GV->getType()->getElementType(),
- llvm::Function::ExternalLinkage,
- "__isr_" + Twine(Num), F, &M.getModule());
+ new llvm::GlobalAlias(llvm::Function::ExternalLinkage,
+ "__isr_" + Twine(Num), F);
}
}
}