Integrated: 8344371: RISC-V: compiler/intrinsics/chacha/TestChaCha20.java fails after JDK-8343555
Fei Yang
fyang at openjdk.org
Tue Nov 19 01:52:50 UTC 2024
On Mon, 18 Nov 2024 01:16:37 GMT, Fei Yang <fyang at openjdk.org> wrote:
> From the error message, the cause of the failure is that 'UseRVV' was made diagnostic in [JDK-8343555](https://bugs.openjdk.org/browse/JDK-8343555). But the test was not updated to refect this. Instead of adding one extra `-XX:+UnlockDiagnosticVMOptions` option, this simply removed the use of `-XX:+UseRVV` from the test. The reason is that we have `-XX:+UseRVV` auto detected and enabled, so we will have RVV extension if we satisfy the test requirement:
>
> (os.arch == "riscv64" & vm.cpu.features ~= ".*rvv.*")
>
>
> Same test pass with this fix on linux-riscv64 with RVV extension.
This pull request has now been integrated.
Changeset: 37298844
Author: Fei Yang <fyang at openjdk.org>
URL: https://git.openjdk.org/jdk/commit/37298844c9504fbafb08c593cb6eec70184e308b
Stats: 1 line in 1 file changed: 0 ins; 0 del; 1 mod
8344371: RISC-V: compiler/intrinsics/chacha/TestChaCha20.java fails after JDK-8343555
Reviewed-by: mli
-------------
PR: https://git.openjdk.org/jdk/pull/22188
More information about the hotspot-compiler-dev
mailing list