mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-18 13:34:04 +00:00
Turn an assert into report_fatal_error since it's reachable based on user input
Bug found with AFL fuzz. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236076 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
af40164431
commit
7b30f32d3d
@ -199,7 +199,8 @@ unsigned BitstreamCursor::readRecord(unsigned AbbrevID,
|
||||
unsigned NumElts = ReadVBR(6);
|
||||
|
||||
// Get the element encoding.
|
||||
assert(i+2 == e && "array op not second to last?");
|
||||
if (i+2 != e)
|
||||
report_fatal_error("Array op not second to last");
|
||||
const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i);
|
||||
if (EltEnc.getEncoding() == BitCodeAbbrevOp::Array ||
|
||||
EltEnc.getEncoding() == BitCodeAbbrevOp::Blob)
|
||||
|
BIN
test/Bitcode/Inputs/invalid-array-op-not-2nd-to-last.bc
Normal file
BIN
test/Bitcode/Inputs/invalid-array-op-not-2nd-to-last.bc
Normal file
Binary file not shown.
@ -105,3 +105,8 @@ RUN: not llvm-dis -disable-output %p/Inputs/invalid-vector-element-type.bc 2>&1
|
||||
RUN: FileCheck --check-prefix=ELEMENT-TYPE %s
|
||||
|
||||
ELEMENT-TYPE: Invalid type
|
||||
|
||||
RUN: not llvm-dis -disable-output %p/Inputs/invalid-array-op-not-2nd-to-last.bc 2>&1 | \
|
||||
RUN: FileCheck --check-prefix=ARRAY-NOT-2LAST %s
|
||||
|
||||
ARRAY-NOT-2LAST: Array op not second to last
|
||||
|
Loading…
x
Reference in New Issue
Block a user