Skip to content

Commit

Permalink
Merge pull request #2783 from degasus/arm
Browse files Browse the repository at this point in the history
JitArm64: fix lfd
  • Loading branch information
Sonicadvance1 committed Jul 27, 2015
2 parents 6cd8ee9 + ec0582e commit c1fcb23
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ void JitArm64::lfXX(UGeckoInstruction inst)
u32 imm_addr = 0;
bool is_immediate = false;

fpr.BindToRegister(inst.FD, false);
// 64 bit loads only load PSR0
fpr.BindToRegister(inst.FD, flags & BackPatchInfo::FLAG_SIZE_F64);

ARM64Reg VD = fpr.R(inst.FD);
ARM64Reg addr_reg = W0;

Expand Down

0 comments on commit c1fcb23

Please sign in to comment.