mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-06 17:24:34 +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:
@ -420,7 +420,7 @@ static char getSymbolNMTypeChar(const GlobalValue &GV) {
|
||||
if (isa<GlobalVariable>(GV))
|
||||
return 'd';
|
||||
const GlobalAlias *GA = cast<GlobalAlias>(&GV);
|
||||
const GlobalValue *AliasedGV = GA->getAliasedGlobal();
|
||||
const GlobalValue *AliasedGV = GA->getAliasee();
|
||||
return getSymbolNMTypeChar(*AliasedGV);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user