Skip to content

Commit

Permalink
[BugFix] Fix interface error in arm env (StarRocks#52049)
Browse files Browse the repository at this point in the history
Signed-off-by: zombee0 <ewang2027@gmail.com>
  • Loading branch information
zombee0 authored Oct 17, 2024
1 parent d62055e commit 6b105ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/util/bit_packing_simd.h
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ inline void unpack<uint16_t>(int bit_width, const uint8_t* __restrict__ in, int6

#else

unpackNaive<uint16_t>(bit_width, in, in_bytes, out, num_values);
unpackNaive<uint16_t>(bit_width, in, in_bytes, num_values, out);

#endif
}
Expand Down

0 comments on commit 6b105ce

Please sign in to comment.