Skip to content

Commit

Permalink
Remove implicit int64_t->uint64_t conversion in ARM version of V128_E…
Browse files Browse the repository at this point in the history
…xtract64

PiperOrigin-RevId: 565662176
Change-Id: I18d5d9eb444b0090e3f4ab8f66ad214a67344268
  • Loading branch information
Abseil Team authored and copybara-github committed Sep 15, 2023
1 parent 5655528 commit c78a3f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion absl/crc/internal/crc32_x86_arm_combined_simd.h
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ inline int V128_Extract32(const V128 l) {

template <int imm>
inline uint64_t V128_Extract64(const V128 l) {
return vgetq_lane_s64(vreinterpretq_s64_u64(l), imm);
return vgetq_lane_u64(l, imm);
}

inline int64_t V128_Low64(const V128 l) {
Expand Down

0 comments on commit c78a3f3

Please sign in to comment.