Commit c78a3f32 by Abseil Team Committed by Copybara-Service

Remove implicit int64_t->uint64_t conversion in ARM version of V128_Extract64

PiperOrigin-RevId: 565662176
Change-Id: I18d5d9eb444b0090e3f4ab8f66ad214a67344268
parent 5655528c
...@@ -274,7 +274,7 @@ inline int V128_Extract32(const V128 l) { ...@@ -274,7 +274,7 @@ inline int V128_Extract32(const V128 l) {
template <int imm> template <int imm>
inline uint64_t V128_Extract64(const V128 l) { 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) { inline int64_t V128_Low64(const V128 l) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment