Skip to content

Commit

Permalink
fix a type of return
Browse files Browse the repository at this point in the history
  • Loading branch information
herumi committed Oct 13, 2024
1 parent d067f0d commit 44bc77d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbyak/xbyak.h
Original file line number Diff line number Diff line change
Expand Up @@ -2665,7 +2665,7 @@ class CodeGenerator : public CodeArray {
{
opAVX_X_X_XM(x1, x2, op, type | orEvexIf(encoding, typeVex, typeEvex, sel), code, imm);
}
int orEvexIf(PreferredEncoding encoding, uint64_t typeVex, uint64_t typeEvex, int sel) {
uint64_t orEvexIf(PreferredEncoding encoding, uint64_t typeVex, uint64_t typeEvex, int sel) {
if (encoding == DefaultEncoding) {
encoding = defaultEncoding_[sel];
}
Expand Down

0 comments on commit 44bc77d

Please sign in to comment.