Fixed typo in BLAS gemm3m call to _check().

Details:
- Fixed an unresolved symbol issue leftover from #590 whereby ?gemm3m_()
  as defined in bla_gemm3m.c was referencing bla_gemm3m_check(), which
  does not exist. It should have simply called the _check() function for
  gemm.
This commit is contained in:
Field G. Van Zee
2022-03-29 16:18:25 -05:00
parent 1ec020b33e
commit cf06364327

View File

@@ -67,7 +67,7 @@ void PASTEF77(ch,blasname) \
bli_init_auto(); \
\
/* Perform BLAS parameter checking. */ \
PASTEBLACHK(blasname) \
PASTEBLACHK(blisname) \
( \
MKSTR(ch), \
MKSTR(blasname), \
@@ -162,7 +162,7 @@ void PASTEF77(ch,blasname) \
bli_init_auto(); \
\
/* Perform BLAS parameter checking. */ \
PASTEBLACHK(blasname) \
PASTEBLACHK(blisname) \
( \
MKSTR(ch), \
MKSTR(blasname), \