Skip to content

Commit 5ad8603

Browse files
committed
simd: Untabify for highbit set instruction
Signed-off-by: Hiroshi Hatake <[email protected]>
1 parent 788eaa8 commit 5ad8603

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/fluent-bit/flb_simd.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -230,8 +230,8 @@ static inline bool flb_vector8_is_highbit_set(const flb_vector8 v)
230230
return vmaxvq_u8(v) > 0x7F;
231231
#elif defined(FLB_SIMD_RVV)
232232
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));
233+
__riscv_vmv_v_x_u8m1(0, RVV_VEC8_INST_LEN),
234+
RVV_VEC8_INST_LEN));
235235
#else
236236
return v & flb_vector8_broadcast(0x80);
237237
#endif

0 commit comments

Comments
 (0)