diff options
Diffstat (limited to 'src/shader_recompiler/ir_opt/constant_propagation_pass.cpp')
| -rw-r--r-- | src/shader_recompiler/ir_opt/constant_propagation_pass.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/shader_recompiler/ir_opt/constant_propagation_pass.cpp b/src/shader_recompiler/ir_opt/constant_propagation_pass.cpp index c403a5fae..d089fdd12 100644 --- a/src/shader_recompiler/ir_opt/constant_propagation_pass.cpp +++ b/src/shader_recompiler/ir_opt/constant_propagation_pass.cpp | |||
| @@ -649,6 +649,10 @@ void ConstantPropagation(IR::Block& block, IR::Inst& inst) { | |||
| 649 | return FoldInverseFunc(inst, IR::Opcode::UnpackHalf2x16); | 649 | return FoldInverseFunc(inst, IR::Opcode::UnpackHalf2x16); |
| 650 | case IR::Opcode::UnpackHalf2x16: | 650 | case IR::Opcode::UnpackHalf2x16: |
| 651 | return FoldInverseFunc(inst, IR::Opcode::PackHalf2x16); | 651 | return FoldInverseFunc(inst, IR::Opcode::PackHalf2x16); |
| 652 | case IR::Opcode::PackFloat2x16: | ||
| 653 | return FoldInverseFunc(inst, IR::Opcode::UnpackFloat2x16); | ||
| 654 | case IR::Opcode::UnpackFloat2x16: | ||
| 655 | return FoldInverseFunc(inst, IR::Opcode::PackFloat2x16); | ||
| 652 | case IR::Opcode::SelectU1: | 656 | case IR::Opcode::SelectU1: |
| 653 | case IR::Opcode::SelectU8: | 657 | case IR::Opcode::SelectU8: |
| 654 | case IR::Opcode::SelectU16: | 658 | case IR::Opcode::SelectU16: |