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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/ir_opt/constant_propagation_pass.cpp b/src/shader_recompiler/ir_opt/constant_propagation_pass.cpp index 4d4e88259..ae3d5a7d6 100644 --- a/src/shader_recompiler/ir_opt/constant_propagation_pass.cpp +++ b/src/shader_recompiler/ir_opt/constant_propagation_pass.cpp | |||
| @@ -330,7 +330,7 @@ void ConstantPropagation(IR::Block& block, IR::Inst& inst) { | |||
| 330 | return FoldBitCast<u32, f32>(inst, IR::Opcode::BitCastF32U32); | 330 | return FoldBitCast<u32, f32>(inst, IR::Opcode::BitCastF32U32); |
| 331 | case IR::Opcode::IAdd64: | 331 | case IR::Opcode::IAdd64: |
| 332 | return FoldAdd<u64>(block, inst); | 332 | return FoldAdd<u64>(block, inst); |
| 333 | case IR::Opcode::Select32: | 333 | case IR::Opcode::SelectU32: |
| 334 | return FoldSelect<u32>(inst); | 334 | return FoldSelect<u32>(inst); |
| 335 | case IR::Opcode::LogicalAnd: | 335 | case IR::Opcode::LogicalAnd: |
| 336 | return FoldLogicalAnd(inst); | 336 | return FoldLogicalAnd(inst); |