We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 788eaa8 commit 5ad8603Copy full SHA for 5ad8603
include/fluent-bit/flb_simd.h
@@ -230,8 +230,8 @@ static inline bool flb_vector8_is_highbit_set(const flb_vector8 v)
230
return vmaxvq_u8(v) > 0x7F;
231
#elif defined(FLB_SIMD_RVV)
232
return __riscv_vmv_x_s_u8m1_u8(__riscv_vredmaxu_vs_u8m1_u8m1(v,
233
- __riscv_vmv_v_x_u8m1(0, RVV_VEC8_INST_LEN),
234
- RVV_VEC8_INST_LEN));
+ __riscv_vmv_v_x_u8m1(0, RVV_VEC8_INST_LEN),
+ RVV_VEC8_INST_LEN));
235
#else
236
return v & flb_vector8_broadcast(0x80);
237
#endif
0 commit comments