mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Turn an assert into report_fatal_error since it's reachable based on user input
Bug found with AFL fuzz. llvm-svn: 236076
This commit is contained in:
parent
6e9efe85bb
commit
10fd7e5c6a
@ -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…
Reference in New Issue
Block a user