mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
Silence warnings
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19379 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
25dc891a3d
commit
2cc34627bb
@ -771,12 +771,12 @@ static Constant *GetGEPGlobalInitializer(Constant *C, ConstantExpr *CE) {
|
|||||||
ConstantStruct *CS = dyn_cast<ConstantStruct>(C);
|
ConstantStruct *CS = dyn_cast<ConstantStruct>(C);
|
||||||
if (CS == 0) return 0;
|
if (CS == 0) return 0;
|
||||||
if (CU->getValue() >= CS->getNumOperands()) return 0;
|
if (CU->getValue() >= CS->getNumOperands()) return 0;
|
||||||
C = CS->getOperand(CU->getValue());
|
C = CS->getOperand((unsigned)CU->getValue());
|
||||||
} else if (ConstantSInt *CS = dyn_cast<ConstantSInt>(CE->getOperand(i))) {
|
} else if (ConstantSInt *CS = dyn_cast<ConstantSInt>(CE->getOperand(i))) {
|
||||||
ConstantArray *CA = dyn_cast<ConstantArray>(C);
|
ConstantArray *CA = dyn_cast<ConstantArray>(C);
|
||||||
if (CA == 0) return 0;
|
if (CA == 0) return 0;
|
||||||
if ((uint64_t)CS->getValue() >= CA->getNumOperands()) return 0;
|
if ((uint64_t)CS->getValue() >= CA->getNumOperands()) return 0;
|
||||||
C = CA->getOperand(CS->getValue());
|
C = CA->getOperand((unsigned)CS->getValue());
|
||||||
} else
|
} else
|
||||||
return 0;
|
return 0;
|
||||||
return C;
|
return C;
|
||||||
|
@ -183,7 +183,8 @@ bool SROA::performScalarRepl(Function &F) {
|
|||||||
Instruction *User = cast<Instruction>(AI->use_back());
|
Instruction *User = cast<Instruction>(AI->use_back());
|
||||||
GetElementPtrInst *GEPI = cast<GetElementPtrInst>(User);
|
GetElementPtrInst *GEPI = cast<GetElementPtrInst>(User);
|
||||||
// We now know that the GEP is of the form: GEP <ptr>, 0, <cst>
|
// We now know that the GEP is of the form: GEP <ptr>, 0, <cst>
|
||||||
uint64_t Idx = cast<ConstantInt>(GEPI->getOperand(2))->getRawValue();
|
unsigned Idx =
|
||||||
|
(unsigned)cast<ConstantInt>(GEPI->getOperand(2))->getRawValue();
|
||||||
|
|
||||||
assert(Idx < ElementAllocas.size() && "Index out of range?");
|
assert(Idx < ElementAllocas.size() && "Index out of range?");
|
||||||
AllocaInst *AllocaToUse = ElementAllocas[Idx];
|
AllocaInst *AllocaToUse = ElementAllocas[Idx];
|
||||||
|
Loading…
Reference in New Issue
Block a user