Skip to content

Commit a81250c

Browse files
DingliZhangRealFYang
authored andcommittedMar 26, 2025
8352673: RISC-V: Vector can't be turned on with -XX:+UseRVV
Reviewed-by: rehn, fyang, syan
1 parent 0935ba9 commit a81250c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/hotspot/cpu/riscv/vm_version_riscv.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ void VM_Version::common_initialize() {
194194
}
195195

196196
if (UseRVV) {
197-
if (!ext_V.enabled()) {
197+
if (!ext_V.enabled() && FLAG_IS_DEFAULT(UseRVV)) {
198198
warning("RVV is not supported on this CPU");
199199
FLAG_SET_DEFAULT(UseRVV, false);
200200
} else {

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Mar 26, 2025

@openjdk-notifier[bot]
Please sign in to comment.