Change readDataLoop alignment to 16

This commit is contained in:
Glenn Anderson 2022-03-19 13:02:34 -07:00
parent e0653d6647
commit c9dbfec6be
1 changed files with 1 additions and 1 deletions

View File

@ -857,7 +857,7 @@ void readDataPhase(int len, byte* p)
/*
* See writeDataLoop for optimization info.
*/
void readDataLoop(uint32_t blockSize) __attribute__ ((aligned(8)));
void readDataLoop(uint32_t blockSize) __attribute__ ((aligned(16)));
void readDataLoop(uint32_t blockSize)
{
register byte *dstptr= m_buf;