mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
Reapply r116831 and r116839, converting AliasAnalysis to use
uint64_t, plus fixes for places I missed before. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116875 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -451,7 +451,7 @@ bool ArgPromotion::isSafeToPromoteArgument(Argument *Arg, bool isByVal) const {
|
||||
|
||||
const PointerType *LoadTy =
|
||||
cast<PointerType>(Load->getPointerOperand()->getType());
|
||||
unsigned LoadSize =(unsigned)TD->getTypeStoreSize(LoadTy->getElementType());
|
||||
uint64_t LoadSize = TD->getTypeStoreSize(LoadTy->getElementType());
|
||||
|
||||
if (AA.canInstructionRangeModify(BB->front(), *Load, Arg, LoadSize))
|
||||
return false; // Pointer is invalidated!
|
||||
|
Reference in New Issue
Block a user