Skip to content

Commit

Permalink
[LA64_DYNAREC] Fixed emit_add16 LBT implementation (#1875)
Browse files Browse the repository at this point in the history
  • Loading branch information
ksco committed Sep 26, 2024
1 parent 6a3904f commit 933dc0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dynarec/la64/dynarec_la64_emit_math.c
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ void emit_add16(dynarec_la64_t* dyn, int ninst, int s1, int s2, int s3, int s4,
}

IFXA (X_ALL, la64_lbt) {
X64_ADD_DU(s1, s2);
X64_ADD_H(s1, s2);
}

ADD_D(s1, s1, s2);
Expand Down

0 comments on commit 933dc0f

Please sign in to comment.