mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
Merge pull request #10385 from shuffle2/arm-buildfix
msvc/arm64: fix shadowed variable warning
This commit is contained in:
commit
90f7565fcc
1 changed files with 1 additions 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");
|
ASSERT_MSG(DYNA_REC, !inputs_are_singles, "Tried to apply 25-bit precision to single");
|
||||||
|
|
||||||
V0Q = fpr.GetReg();
|
V0Q = fpr.GetReg();
|
||||||
const ARM64Reg V1Q = fpr.GetReg();
|
V1Q = fpr.GetReg();
|
||||||
|
|
||||||
Force25BitPrecision(reg_encoder(V0Q), VC, reg_encoder(V1Q));
|
Force25BitPrecision(reg_encoder(V0Q), VC, reg_encoder(V1Q));
|
||||||
VC = reg_encoder(V0Q);
|
VC = reg_encoder(V0Q);
|
||||||
|
|
||||||
fpr.Unlock(V1Q);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (op5)
|
switch (op5)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue