ir: Add opcodes for unsigned saturating left shifts

This commit is contained in:
Lioncash 2018-09-18 18:09:47 -04:00 committed by MerryMage
parent ab60720418
commit d426dfe942
5 changed files with 76 additions and 0 deletions

View file

@ -380,6 +380,10 @@ bool Inst::WritesToFPSRCumulativeSaturationBit() const {
case Opcode::VectorUnsignedSaturatedNarrow16:
case Opcode::VectorUnsignedSaturatedNarrow32:
case Opcode::VectorUnsignedSaturatedNarrow64:
case Opcode::VectorUnsignedSaturatedShiftLeft8:
case Opcode::VectorUnsignedSaturatedShiftLeft16:
case Opcode::VectorUnsignedSaturatedShiftLeft32:
case Opcode::VectorUnsignedSaturatedShiftLeft64:
return true;
default: