mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-24 08:24:33 +00:00
Convert TargetData::getIndexedOffset to use ArrayRef.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135478 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -346,9 +346,9 @@ bool FunctionComparator::isEquivalentGEP(const GEPOperator *GEP1,
|
||||
SmallVector<Value *, 8> Indices1(GEP1->idx_begin(), GEP1->idx_end());
|
||||
SmallVector<Value *, 8> Indices2(GEP2->idx_begin(), GEP2->idx_end());
|
||||
uint64_t Offset1 = TD->getIndexedOffset(GEP1->getPointerOperandType(),
|
||||
Indices1.data(), Indices1.size());
|
||||
Indices1);
|
||||
uint64_t Offset2 = TD->getIndexedOffset(GEP2->getPointerOperandType(),
|
||||
Indices2.data(), Indices2.size());
|
||||
Indices2);
|
||||
return Offset1 == Offset2;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user