mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-25 16:24:23 +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:
@ -60,7 +60,7 @@ void GlobalValue::copyAttributesFrom(const GlobalValue *Src) {
|
||||
|
||||
unsigned GlobalValue::getAlignment() const {
|
||||
if (auto *GA = dyn_cast<GlobalAlias>(this))
|
||||
return GA->getAliasedGlobal()->getAlignment();
|
||||
return GA->getAliasee()->getAlignment();
|
||||
|
||||
return cast<GlobalObject>(this)->getAlignment();
|
||||
}
|
||||
@ -82,7 +82,7 @@ void GlobalObject::copyAttributesFrom(const GlobalValue *Src) {
|
||||
|
||||
const std::string &GlobalValue::getSection() const {
|
||||
if (auto *GA = dyn_cast<GlobalAlias>(this))
|
||||
return GA->getAliasedGlobal()->getSection();
|
||||
return GA->getAliasee()->getSection();
|
||||
return cast<GlobalObject>(this)->getSection();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user