mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
Fix VS warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19382 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -275,7 +275,7 @@ bool ArgPromotion::isSafeToPromoteArgument(Argument *Arg) const {
|
||||
|
||||
const PointerType *LoadTy =
|
||||
cast<PointerType>(Load->getOperand(0)->getType());
|
||||
unsigned LoadSize = TD.getTypeSize(LoadTy->getElementType());
|
||||
unsigned LoadSize = (unsigned)TD.getTypeSize(LoadTy->getElementType());
|
||||
|
||||
if (AA.canInstructionRangeModify(BB->front(), *Load, Arg, LoadSize))
|
||||
return false; // Pointer is invalidated!
|
||||
|
Reference in New Issue
Block a user