mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +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:
@ -1966,8 +1966,10 @@ error_code BitcodeReader::ParseModule(bool Resume) {
|
||||
if (!Ty->isPointerTy())
|
||||
return Error(InvalidTypeForValue);
|
||||
|
||||
GlobalAlias *NewGA = new GlobalAlias(Ty, GetDecodedLinkage(Record[2]),
|
||||
"", nullptr, TheModule);
|
||||
auto *PTy = cast<PointerType>(Ty);
|
||||
GlobalAlias *NewGA =
|
||||
new GlobalAlias(PTy->getElementType(), GetDecodedLinkage(Record[2]),
|
||||
"", nullptr, TheModule, PTy->getAddressSpace());
|
||||
// Old bitcode files didn't have visibility field.
|
||||
// Local linkage must have default visibility.
|
||||
if (Record.size() > 3 && !NewGA->hasLocalLinkage())
|
||||
|
Reference in New Issue
Block a user