mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-19 18:24:00 +00:00
Change the GlobalAlias constructor to look a bit more like GlobalVariable.
This is part of the fix for pr10367. A GlobalAlias always has a pointer type, so just have the constructor build the type. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208983 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -67,8 +67,10 @@ Module *llvm::CloneModule(const Module *M, ValueToValueMapTy &VMap) {
|
||||
// Loop over the aliases in the module
|
||||
for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end();
|
||||
I != E; ++I) {
|
||||
GlobalAlias *GA = new GlobalAlias(I->getType(), I->getLinkage(),
|
||||
I->getName(), nullptr, New);
|
||||
auto *PTy = cast<PointerType>(I->getType());
|
||||
auto *GA =
|
||||
new GlobalAlias(PTy->getElementType(), I->getLinkage(), I->getName(),
|
||||
nullptr, New, PTy->getAddressSpace());
|
||||
GA->copyAttributesFrom(I);
|
||||
VMap[I] = GA;
|
||||
}
|
||||
|
Reference in New Issue
Block a user