mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-28 03:25:23 +00:00
[BitcodeReader] Don't allow INSERTVAL/EXTRACTVAL with 0 indices
This would trigger an assertion later. Bug found with AFL fuzz. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237494 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -3555,10 +3555,13 @@ std::error_code BitcodeReader::ParseFunctionBody(Function *F) {
|
||||
if (getValueTypePair(Record, OpNum, NextValueNo, Agg))
|
||||
return Error("Invalid record");
|
||||
|
||||
unsigned RecSize = Record.size();
|
||||
if (OpNum == RecSize)
|
||||
return Error("EXTRACTVAL: Invalid instruction with 0 indices");
|
||||
|
||||
SmallVector<unsigned, 4> EXTRACTVALIdx;
|
||||
Type *CurTy = Agg->getType();
|
||||
for (unsigned RecSize = Record.size();
|
||||
OpNum != RecSize; ++OpNum) {
|
||||
for (; OpNum != RecSize; ++OpNum) {
|
||||
bool IsArray = CurTy->isArrayTy();
|
||||
bool IsStruct = CurTy->isStructTy();
|
||||
uint64_t Index = Record[OpNum];
|
||||
@@ -3594,10 +3597,13 @@ std::error_code BitcodeReader::ParseFunctionBody(Function *F) {
|
||||
if (getValueTypePair(Record, OpNum, NextValueNo, Val))
|
||||
return Error("Invalid record");
|
||||
|
||||
unsigned RecSize = Record.size();
|
||||
if (OpNum == RecSize)
|
||||
return Error("INSERTVAL: Invalid instruction with 0 indices");
|
||||
|
||||
SmallVector<unsigned, 4> INSERTVALIdx;
|
||||
Type *CurTy = Agg->getType();
|
||||
for (unsigned RecSize = Record.size();
|
||||
OpNum != RecSize; ++OpNum) {
|
||||
for (; OpNum != RecSize; ++OpNum) {
|
||||
bool IsArray = CurTy->isArrayTy();
|
||||
bool IsStruct = CurTy->isStructTy();
|
||||
uint64_t Index = Record[OpNum];
|
||||
|
Reference in New Issue
Block a user