summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/frontend/maxwell/translate/impl/integer_add_three_input.cpp
diff options
context:
space:
mode:
authorFernandoS27 <fsahmkow27@gmail.com>2021-04-18 10:08:22 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:28 +0200
commit29990289767c41c162473c9775ad3ba08e7ee9ea (patch)
treea5e098aa66472e033bb946d17843f2b5f701244f /src/shader_recompiler/frontend/maxwell/translate/impl/integer_add_three_input.cpp
parentshader: Implement F2F (Imm) (diff)
downloadyuzu-29990289767c41c162473c9775ad3ba08e7ee9ea.tar
yuzu-29990289767c41c162473c9775ad3ba08e7ee9ea.tar.gz
yuzu-29990289767c41c162473c9775ad3ba08e7ee9ea.tar.bz2
yuzu-29990289767c41c162473c9775ad3ba08e7ee9ea.tar.lz
yuzu-29990289767c41c162473c9775ad3ba08e7ee9ea.tar.xz
yuzu-29990289767c41c162473c9775ad3ba08e7ee9ea.tar.zst
yuzu-29990289767c41c162473c9775ad3ba08e7ee9ea.zip
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/frontend/maxwell/translate/impl/integer_add_three_input.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/integer_add_three_input.cpp b/src/shader_recompiler/frontend/maxwell/translate/impl/integer_add_three_input.cpp
index e88c0ffb6..15da90365 100644
--- a/src/shader_recompiler/frontend/maxwell/translate/impl/integer_add_three_input.cpp
+++ b/src/shader_recompiler/frontend/maxwell/translate/impl/integer_add_three_input.cpp
@@ -83,7 +83,7 @@ void IADD3(TranslatorVisitor& v, u64 insn, IR::U32 op_b, IR::U32 op_c) {
lhs = v.ir.IAdd(lhs, carry);
}
if (iadd3.cc != 0 && iadd3.shift == Shift::Left) {
- IR::U32 high_bits{v.ir.ShiftRightLogical(lhs, v.ir.Imm32(16))};
+ const IR::U32 high_bits{v.ir.ShiftRightLogical(lhs, v.ir.Imm32(16))};
of_1 = v.ir.LogicalOr(of_1, v.ir.INotEqual(v.ir.Imm32(0), high_bits));
}
lhs = IntegerShift(v.ir, lhs, iadd3.shift);