From 6287d4fb73425eff7d0ddf852e3cfc9c3d468fc9 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Tue, 7 Apr 2020 23:44:16 -0400 Subject: Fix copy/paste typo --- ppc_simd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ppc_simd.h') diff --git a/ppc_simd.h b/ppc_simd.h index b8da0bde..e7b0d2ad 100644 --- a/ppc_simd.h +++ b/ppc_simd.h @@ -1156,7 +1156,7 @@ inline void VecStoreAligned(const T data, byte dest[16]) #if defined(_ARCH_PWR9) vec_xst((uint8x16_p)data, 0, NCONST_V8_CAST(dest)); #else - vec_st((uint8x16_p)data, off, NCONST_V8_CAST(dest)); + vec_st((uint8x16_p)data, 0, NCONST_V8_CAST(dest)); #endif } @@ -1232,7 +1232,7 @@ inline void VecStoreAligned(const T data, word32 dest[4]) vec_xst((uint32x4_p)data, 0, NCONST_V32_CAST(dest)); # endif #else - vec_st((uint8x16_p)data, off, NCONST_V8_CAST(dest)); + vec_st((uint8x16_p)data, 0, NCONST_V8_CAST(dest)); #endif } -- cgit v1.2.1