Skip to content

Commit

Permalink
Make sure it passes Windows building
Browse files Browse the repository at this point in the history
  • Loading branch information
ziyilin committed Dec 17, 2024
1 parent 77bdab9 commit ac2824c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/cpu/x86/assembler_x86.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10636,7 +10636,7 @@ void Assembler::btq(Register src, int imm8) {
assert(isByte(imm8), "not a byte");
InstructionMark im(this);
int encode = prefixq_and_encode(src->encoding());
emit_int16(0x0f, 0xba);
emit_int16(0x0f, static_cast<uint8_t>(0xba));
emit_int8(0xe0|encode);
emit_int8(imm8);
}
Expand Down

0 comments on commit ac2824c

Please sign in to comment.