mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 08:41:44 +00:00
Don't assume that the operand of an inttoptr is an pointer-sized integer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79651 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
636e258a53
commit
7178010a16
@ -138,8 +138,10 @@ static Constant *SymbolicallyEvaluateGEP(Constant* const* Ops, unsigned NumOps,
|
||||
// otherwise we can't.
|
||||
if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr))
|
||||
if (CE->getOpcode() == Instruction::IntToPtr)
|
||||
if (ConstantInt *Base = dyn_cast<ConstantInt>(CE->getOperand(0)))
|
||||
if (ConstantInt *Base = dyn_cast<ConstantInt>(CE->getOperand(0))) {
|
||||
BasePtr = Base->getValue();
|
||||
BasePtr.zextOrTrunc(BitWidth);
|
||||
}
|
||||
|
||||
if (BasePtr == 0)
|
||||
BaseIsInt = false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user