mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-08 21:32:39 +00:00
Fix a problem with negative indexes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5681 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ec0e374ba7
commit
ff2d556bab
@ -301,11 +301,11 @@ BasicAliasAnalysis::CheckGEPInstructions(GetElementPtrInst *GEP1, unsigned G1S,
|
||||
}
|
||||
}
|
||||
|
||||
unsigned Offset1 = getTargetData().getIndexedOffset(GEPPointerTy, Indices1);
|
||||
unsigned Offset2 = getTargetData().getIndexedOffset(GEPPointerTy, Indices2);
|
||||
int Offset1 = getTargetData().getIndexedOffset(GEPPointerTy, Indices1);
|
||||
int Offset2 = getTargetData().getIndexedOffset(GEPPointerTy, Indices2);
|
||||
assert(Offset1 < Offset2 &&"There is at least one different constant here!");
|
||||
|
||||
if (Offset2-Offset1 >= SizeMax) {
|
||||
if ((unsigned)(Offset2-Offset1) >= SizeMax) {
|
||||
//std::cerr << "Determined that these two GEP's don't alias ["
|
||||
// << SizeMax << " bytes]: \n" << *GEP1 << *GEP2;
|
||||
return NoAlias;
|
||||
|
Loading…
x
Reference in New Issue
Block a user