Skip to content

Commit

Permalink
Merge pull request #58 from wh201906/wh201906/fix_regx2_store_no_intr…
Browse files Browse the repository at this point in the history
…insics

Fix `Regx2::store()` and `Regx2::storeu()`
  • Loading branch information
kouchy authored Nov 11, 2024
2 parents f727ba9 + e598a94 commit 730e6bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/mipp_object.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -746,8 +746,8 @@ public:
#else
inline void load (const T* data ) { val[0] = data[0]; val[1] = data[1]; }
inline void loadu (const T* data ) { val[0] = data[0]; val[1] = data[1]; }
inline void store (T* data ) const { data[0] = val[0]; data[1] = val[1]; }
inline void storeu (T* data ) const { data[0] = val[0]; data[1] = val[1]; }
inline void store (T* data ) const { data[0] = val[0].r; data[1] = val[1].r; }
inline void storeu (T* data ) const { data[0] = val[0].r; data[1] = val[1].r; }
inline Regx2<T> interleave ( ) const { return *this; }
inline Regx2<T> deinterleave( ) const { return *this; }
inline Regx2<T> conj ( ) const { return Regx2<T>(val[0].r, -val[1].r); }
Expand Down

0 comments on commit 730e6bb

Please sign in to comment.