From aa8a6bec3036a41e1bff2034f8ef6766a704ec49 Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Sat, 27 Apr 2019 18:53:33 -0500 Subject: [PATCH] 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). --- frame/3/bli_l3_sup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frame/3/bli_l3_sup.c b/frame/3/bli_l3_sup.c index 006a74658..cb0d555d4 100644 --- a/frame/3/bli_l3_sup.c +++ b/frame/3/bli_l3_sup.c @@ -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