We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed1ea5f commit 876a725Copy full SHA for 876a725
src/hotspot/os_cpu/linux_riscv/riscv_hwprobe.cpp
@@ -100,7 +100,7 @@ static bool is_valid(int64_t key) {
100
101
static bool is_set(int64_t key, uint64_t value_mask) {
102
if (is_valid(key)) {
103
- return query[key].value & value_mask != 0;
+ return (query[key].value & value_mask) != 0;
104
}
105
return false;
106
0 commit comments