return true;
// Create the alias with no name.
- llvm::GlobalAlias *Alias =
- new llvm::GlobalAlias(AliasType, Linkage, "", Aliasee, &getModule());
+ auto *Alias = new llvm::GlobalAlias(
+ AliasType->getElementType(), Linkage, "", Aliasee, &getModule());
// Switch any previous uses to the alias.
if (Entry) {
}
}
if (0 == SelValue) {
- SelValue = new llvm::GlobalAlias(SelectorTy,
+ SelValue = new llvm::GlobalAlias(SelectorTy->getElementType(),
llvm::GlobalValue::PrivateLinkage,
".objc_selector_"+Sel.getAsString(), NULL,
&TheModule);
// super_class pointer from either the class or metaclass structure.
if (IsClassMessage) {
if (!MetaClassPtrAlias) {
- MetaClassPtrAlias = new llvm::GlobalAlias(IdTy,
+ MetaClassPtrAlias = new llvm::GlobalAlias(IdTy->getElementType(),
llvm::GlobalValue::InternalLinkage, ".objc_metaclass_ref" +
Class->getNameAsString(), NULL, &TheModule);
}
ReceiverClass = MetaClassPtrAlias;
} else {
if (!ClassPtrAlias) {
- ClassPtrAlias = new llvm::GlobalAlias(IdTy,
+ ClassPtrAlias = new llvm::GlobalAlias(IdTy->getElementType(),
llvm::GlobalValue::InternalLinkage, ".objc_class_ref" +
Class->getNameAsString(), NULL, &TheModule);
}
llvm::PointerType::getUnqual(DeclTy), 0);
// Create the new alias itself, but don't set a name yet.
- auto *GA =
- new llvm::GlobalAlias(Aliasee->getType(), llvm::Function::ExternalLinkage,
- "", Aliasee, &getModule());
+ auto *GA = new llvm::GlobalAlias(
+ cast<llvm::PointerType>(Aliasee->getType())->getElementType(),
+ llvm::Function::ExternalLinkage, "", Aliasee, &getModule());
if (Entry) {
assert(Entry->isDeclaration());
IdentifierInfo *Name = I->first;
llvm::GlobalValue *Val = I->second;
if (Val && !getModule().getNamedValue(Name->getName()))
- addUsedGlobal(new llvm::GlobalAlias(Val->getType(), Val->getLinkage(),
- Name->getName(), Val, &getModule()));
+ addUsedGlobal(new llvm::GlobalAlias(Val->getType()->getElementType(),
+ Val->getLinkage(), Name->getName(),
+ Val, &getModule()));
}
}
if (VD->hasDefinition()) {
InitIsInitFunc = true;
if (InitFunc)
- Init =
- new llvm::GlobalAlias(InitFunc->getType(), Var->getLinkage(),
- InitFnName.str(), InitFunc, &CGM.getModule());
+ Init = new llvm::GlobalAlias(InitFunc->getType()->getElementType(),
+ Var->getLinkage(), InitFnName.str(),
+ InitFunc, &CGM.getModule());
} 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(), llvm::Function::ExternalLinkage,
- "__isr_" + Twine(Num),
- GV, &M.getModule());
+ new llvm::GlobalAlias(GV->getType()->getElementType(),
+ llvm::Function::ExternalLinkage,
+ "__isr_" + Twine(Num), GV, &M.getModule());
}
}
}