mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-22 23:24:59 +00:00
Delete getAliasedGlobal.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209040 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -932,7 +932,7 @@ bool AsmPrinter::doFinalization(Module &M) {
|
||||
for (const auto &Alias : M.aliases()) {
|
||||
MCSymbol *Name = getSymbol(&Alias);
|
||||
|
||||
const GlobalValue *GV = Alias.getAliasedGlobal();
|
||||
const GlobalValue *GV = Alias.getAliasee();
|
||||
assert(!GV->isDeclaration());
|
||||
MCSymbol *Target = getSymbol(GV);
|
||||
|
||||
|
@@ -1194,7 +1194,7 @@ SDValue SelectionDAG::getGlobalAddress(const GlobalValue *GV, SDLoc DL,
|
||||
if (!GVar) {
|
||||
// If GV is an alias then use the aliasee for determining thread-localness.
|
||||
if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
|
||||
GVar = dyn_cast_or_null<GlobalVariable>(GA->getAliasedGlobal());
|
||||
GVar = dyn_cast_or_null<GlobalVariable>(GA->getAliasee());
|
||||
}
|
||||
|
||||
unsigned Opc;
|
||||
|
Reference in New Issue
Block a user