Fix duplicate execution code for Power 8 Altivec in pstore_partial.

This commit is contained in:
Chip Kerchner 2022-11-16 13:41:42 +00:00 committed by Rasmus Munk Larsen
parent 6431dfdb50
commit 399ce1ed63

View File

@ -1460,11 +1460,6 @@ template<typename Packet> EIGEN_ALWAYS_INLINE void pstoreu_partial_common(__UNPA
if (i < n2) {
*reinterpret_cast<uint8_t *>(to2 + i) = *reinterpret_cast<uint8_t *>(store2 + i);
}
LOAD_STORE_UNROLL_16
for (Index i = 0; i < n; i++) {
to[i] = from[i];
}
#endif
}