Skip to content

Commit

Permalink
msvc: fix compile warning on arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
shuffle2 committed Nov 11, 2021
1 parent 4008188 commit 58dc9e7
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -926,7 +926,8 @@ void JitArm64::mtfsfx(UGeckoInstruction inst)

if (LogicalImm imm = LogicalImm(mask, 32))
{
AND(WA, WA, LogicalImm(~mask, 32));
const u32 inverted_mask = ~mask;
AND(WA, WA, LogicalImm(inverted_mask, 32));
AND(WB, WB, imm);
}
else
Expand Down

0 comments on commit 58dc9e7

Please sign in to comment.