Skip to content

Commit a9eb50a

Browse files
committed
8342953: RISC-V: Fix definition of RISCV_HWPROBE_EXT_ZVFHMIN
Reviewed-by: mli, rehn
1 parent 94317db commit a9eb50a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hotspot/os_cpu/linux_riscv/riscv_hwprobe.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
#define RISCV_HWPROBE_EXT_ZFHMIN (1 << 28)
7575
#define RISCV_HWPROBE_EXT_ZIHINTNTL (1 << 29)
7676
#define RISCV_HWPROBE_EXT_ZVFH (1 << 30)
77-
#define RISCV_HWPROBE_EXT_ZVFHMIN (1 << 31)
77+
#define RISCV_HWPROBE_EXT_ZVFHMIN (1ULL << 31)
7878
#define RISCV_HWPROBE_EXT_ZFA (1ULL << 32)
7979
#define RISCV_HWPROBE_EXT_ZTSO (1ULL << 33)
8080
#define RISCV_HWPROBE_EXT_ZACAS (1ULL << 34)

0 commit comments

Comments
 (0)