Fix typo in VecStore

pull/748/head
Jeffrey Walton 2018-11-19 20:31:06 -05:00
parent 66b3ba5d66
commit e6370f3ea1
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 1 additions and 1 deletions

View File

@ -474,7 +474,7 @@ inline void VecStore(const T data, int off, byte dest[16])
{
#if defined(_ARCH_PWR7)
# if defined(__early_xlc__) || defined(__early_xlC__)
vec_xstw4((uint8x16_p)data, 0, (byte*)dest);
vec_xstw4((uint8x16_p)data, off, (byte*)dest);
# elif defined(__xlc__) || defined(__xlC__) || defined(__clang__)
vec_xst((uint8x16_p)data, off, (byte*)dest);
# else