early-access version 1944
This commit is contained in:
parent
c544b4ea9f
commit
8300b13bf3
2 changed files with 5 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 1943.
|
This is the source code for early-access 1944.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -649,6 +649,10 @@ void ConstantPropagation(IR::Block& block, IR::Inst& inst) {
|
||||||
return FoldInverseFunc(inst, IR::Opcode::UnpackHalf2x16);
|
return FoldInverseFunc(inst, IR::Opcode::UnpackHalf2x16);
|
||||||
case IR::Opcode::UnpackHalf2x16:
|
case IR::Opcode::UnpackHalf2x16:
|
||||||
return FoldInverseFunc(inst, IR::Opcode::PackHalf2x16);
|
return FoldInverseFunc(inst, IR::Opcode::PackHalf2x16);
|
||||||
|
case IR::Opcode::PackFloat2x16:
|
||||||
|
return FoldInverseFunc(inst, IR::Opcode::UnpackFloat2x16);
|
||||||
|
case IR::Opcode::UnpackFloat2x16:
|
||||||
|
return FoldInverseFunc(inst, IR::Opcode::PackFloat2x16);
|
||||||
case IR::Opcode::SelectU1:
|
case IR::Opcode::SelectU1:
|
||||||
case IR::Opcode::SelectU8:
|
case IR::Opcode::SelectU8:
|
||||||
case IR::Opcode::SelectU16:
|
case IR::Opcode::SelectU16:
|
||||||
|
|
Loading…
Reference in a new issue