summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/decode
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2020-04-28 22:14:53 +0200
committerReinUsesLisp <reinuseslisp@airmail.cc>2020-04-28 22:14:53 +0200
commit871aadbe36b7480f7dc318e2a8bebb064a1fbaaf (patch)
tree88d075681c46f0201f5194028e3aac27750328fa /src/video_core/shader/decode
parentshader/arithmetic_integer: Fix edge case and mark IADD.X Rd.CC as unimplemented (diff)
downloadyuzu-871aadbe36b7480f7dc318e2a8bebb064a1fbaaf.tar
yuzu-871aadbe36b7480f7dc318e2a8bebb064a1fbaaf.tar.gz
yuzu-871aadbe36b7480f7dc318e2a8bebb064a1fbaaf.tar.bz2
yuzu-871aadbe36b7480f7dc318e2a8bebb064a1fbaaf.tar.lz
yuzu-871aadbe36b7480f7dc318e2a8bebb064a1fbaaf.tar.xz
yuzu-871aadbe36b7480f7dc318e2a8bebb064a1fbaaf.tar.zst
yuzu-871aadbe36b7480f7dc318e2a8bebb064a1fbaaf.zip
Diffstat (limited to 'src/video_core/shader/decode')
-rw-r--r--src/video_core/shader/decode/arithmetic_integer.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/video_core/shader/decode/arithmetic_integer.cpp b/src/video_core/shader/decode/arithmetic_integer.cpp
index ced5c3dc1..a041519b7 100644
--- a/src/video_core/shader/decode/arithmetic_integer.cpp
+++ b/src/video_core/shader/decode/arithmetic_integer.cpp
@@ -50,10 +50,6 @@ u32 ShaderIR::DecodeArithmeticInteger(NodeBlock& bb, u32 pc) {
}
if (instr.generates_cc) {
- // Avoid changing result's carry flag
- SetTemporary(bb, 0, std::move(value));
- value = GetTemporary(0);
-
const Node i0 = Immediate(0);
Node zero = Operation(OperationCode::LogicalIEqual, value, i0);