Corrected variable type and comment update.

Details:
- Forgot to save all changes from bli_gemmtrsm4m1_ref.c before commit
  in 8122f59. Fixed type mismatch and referenced github issue in
  comment.
This commit is contained in:
Field G. Van Zee
2019-08-21 13:39:05 -05:00
parent 8122f59745
commit 0cd383d53a

View File

@@ -88,8 +88,8 @@ void PASTEMAC3(ch,opname,arch,suf) \
/* A hack to avoid a 'restrict' warning triggered by passing in the
same address (one_r) for both alpha and beta when calling the last
of the four matrix products. We now use one_r for alpha and this
new local variable, onel, for beta. */ \
ctype onel; \
new local variable, onel, for beta. (See issue #328.) */ \
ctype_r onel; \
ctype_r* restrict onel_r = &onel; \
PASTEMAC(chr,set1s)( onel ); \
\