Skip to content

Commit

Permalink
riscv64: Enable V feature when both zve64d and zvl128b are present (#…
Browse files Browse the repository at this point in the history
…1284)

Co-authored-by: Juhung Li <[email protected]>
  • Loading branch information
Ruhung and Juhung Li authored Feb 26, 2025
1 parent 0244625 commit 6450e25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simde/simde-arch.h
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@
#if defined(__riscv_zve64d)
# define SIMDE_ARCH_RISCV_ZVE64D 1
#endif
#if defined(__riscv_v)
#if defined(__riscv_v) || (defined(__riscv_zve64d) && defined(__riscv_zvl128b))
# define SIMDE_ARCH_RISCV_V 1
#endif
#if defined(__riscv_zvfh)
Expand Down

0 comments on commit 6450e25

Please sign in to comment.