Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8277928: Fix compilation on macosx-aarch64 after 8276108
Backport-of: 2622ab3fe94814fb4f7f22e4015ef1519e546905
  • Loading branch information
martinuy committed Sep 15, 2022
1 parent 1e209d7 commit a800fe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/cpu/aarch64/assembler_aarch64.hpp
Expand Up @@ -477,7 +477,7 @@ class Address {
size = 0b100;
}
assert(offset_ok_for_immed(_offset, size),
"must be, was: %ld, %d", _offset, size);
"must be, was: " INT64_FORMAT ", %d", _offset, size);
unsigned mask = (1 << size) - 1;
if (_offset < 0 || _offset & mask) {
i->f(0b00, 25, 24);
Expand Down

1 comment on commit a800fe4

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.