Fixed bad loop counter in bli_[cz]scal2bbs_mxn().

Details:
- Fixed a typo in the loop counter for the 'd' (duplication) dimension
  in the complex macros of frame/include/level0/bb/bli_scal2bbs_mxn.h.
  They shouldn't be used by anyone yet, but thankfully clang via
  AppVeyor spit out warnings that alerted me to the issue.
This commit is contained in:
Field G. Van Zee
2019-09-17 18:04:17 -05:00
parent c766c81d62
commit c60db26aee

View File

@@ -155,7 +155,7 @@ static void PASTEMAC(ch,opname) \
*chiij_r, *chiij_i, \
*psiij_r, *psiij_i ); \
\
for ( dim_t p = 1; i < d; ++p ) \
for ( dim_t p = 1; p < d; ++p ) \
{ \
ctype_r* restrict psiijd_r = psiij_r + p*ds_y; \
ctype_r* restrict psiijd_i = psiij_i + p*ds_y; \
@@ -186,7 +186,7 @@ static void PASTEMAC(ch,opname) \
*chiij_r, *chiij_i, \
*psiij_r, *psiij_i ); \
\
for ( dim_t p = 1; i < d; ++p ) \
for ( dim_t p = 1; p < d; ++p ) \
{ \
ctype_r* restrict psiijd_r = psiij_r + p*ds_y; \
ctype_r* restrict psiijd_i = psiij_i + p*ds_y; \