mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-23 00:20:25 +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:
@@ -127,3 +127,13 @@ RUN: not llvm-dis -disable-output %p/Inputs/invalid-GCTable-overflow.bc 2>&1 | \
|
||||
RUN: FileCheck --check-prefix=GCTABLE-OFLOW %s
|
||||
|
||||
GCTABLE-OFLOW: Invalid ID
|
||||
|
||||
RUN: not llvm-dis -disable-output %p/Inputs/invalid-insert-0-indices.bc 2>&1 | \
|
||||
RUN: FileCheck --check-prefix=INSERT-0-IDXS %s
|
||||
|
||||
INSERT-0-IDXS: INSERTVAL: Invalid instruction with 0 indices
|
||||
|
||||
RUN: not llvm-dis -disable-output %p/Inputs/invalid-extract-0-indices.bc 2>&1 | \
|
||||
RUN: FileCheck --check-prefix=EXTRACT-0-IDXS %s
|
||||
|
||||
EXTRACT-0-IDXS: EXTRACTVAL: Invalid instruction with 0 indices
|
||||
|
||||
Reference in New Issue
Block a user