Skip to content
Permalink
Browse files
Merge pull request #10385 from shuffle2/arm-buildfix
msvc/arm64: fix shadowed variable warning
  • Loading branch information
JosJuice committed Jan 27, 2022
2 parents a8c5c9d + 4ce9944 commit 90f7565
Showing 1 changed file with 1 addition and 3 deletions.
@@ -113,12 +113,10 @@ void JitArm64::fp_arith(UGeckoInstruction inst)
ASSERT_MSG(DYNA_REC, !inputs_are_singles, "Tried to apply 25-bit precision to single");

V0Q = fpr.GetReg();
const ARM64Reg V1Q = fpr.GetReg();
V1Q = fpr.GetReg();

Force25BitPrecision(reg_encoder(V0Q), VC, reg_encoder(V1Q));
VC = reg_encoder(V0Q);

fpr.Unlock(V1Q);
}

switch (op5)

0 comments on commit 90f7565

Please sign in to comment.