Fixed typo in --disable-sup-handling macro guard.

Details:
- Fixed an incorrectly-named macro guard that is intended to allow
  disabling of the sup framework via the configure option
  --disable-sup-handling. In this case, the preprocessor macro,
  BLIS_DISABLE_SUP_HANDLING, was still named by its name from an older
  uncommitted version of the code (BLIS_DISABLE_SM_HANDLING).
This commit is contained in:
Field G. Van Zee
2019-04-27 18:53:33 -05:00
parent b9c9f03502
commit aa8a6bec30

View File

@@ -46,7 +46,7 @@ err_t bli_gemmsup
)
{
// Return early if small matrix handling is disabled at configure-time.
#ifdef BLIS_DISABLE_SM_HANDLING
#ifdef BLIS_DISABLE_SUP_HANDLING
return BLIS_FAILURE;
#endif