1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00

[GlobalISel][Legalizer] Bump up a smallvector size that was found to be too small. NFC.

This commit is contained in:
Amara Emerson 2021-04-29 14:35:02 -07:00
parent b6a42c9d96
commit 748b2260be

View File

@ -485,7 +485,7 @@ LegalizerInfo::getAction(const LegalityQuery &Query) const {
LegalizeActionStep LegalizeActionStep
LegalizerInfo::getAction(const MachineInstr &MI, LegalizerInfo::getAction(const MachineInstr &MI,
const MachineRegisterInfo &MRI) const { const MachineRegisterInfo &MRI) const {
SmallVector<LLT, 2> Types; SmallVector<LLT, 8> Types;
SmallBitVector SeenTypes(8); SmallBitVector SeenTypes(8);
const MCOperandInfo *OpInfo = MI.getDesc().OpInfo; const MCOperandInfo *OpInfo = MI.getDesc().OpInfo;
// FIXME: probably we'll need to cache the results here somehow? // FIXME: probably we'll need to cache the results here somehow?