mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-18 11:24:01 +00:00
handle gep aliasee
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36815 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -218,8 +218,9 @@ const GlobalValue *GlobalAlias::getAliasedGlobal() const {
|
|||||||
else {
|
else {
|
||||||
const ConstantExpr *CE = 0;
|
const ConstantExpr *CE = 0;
|
||||||
if ((CE = dyn_cast<ConstantExpr>(C)) &&
|
if ((CE = dyn_cast<ConstantExpr>(C)) &&
|
||||||
(CE->getOpcode() == Instruction::BitCast))
|
(CE->getOpcode() == Instruction::BitCast ||
|
||||||
return cast<GlobalValue>(CE->getOperand(0));
|
CE->getOpcode() == Instruction::GetElementPtr))
|
||||||
|
return dyn_cast<GlobalValue>(CE->getOperand(0));
|
||||||
else
|
else
|
||||||
assert(0 && "Unsupported aliasee");
|
assert(0 && "Unsupported aliasee");
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user