From 9ee95e171aa3537bbc33c72b11f44f871373c84d Mon Sep 17 00:00:00 2001 From: Harihara Sudhan S Date: Thu, 18 May 2023 14:18:53 +0530 Subject: [PATCH] Control flow issue reported during static code analysis - Missing break statement will result in unexpected control flow. This function will not launch the threads for the API in question according to the AOCL dynamic logic without the break statement. AMD-Internal: [CPUPL-3436] Change-Id: Ic47d773169c09e84086a27b50cd59dba33529698 --- frame/base/bli_rntm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frame/base/bli_rntm.c b/frame/base/bli_rntm.c index 8425ae806..98131623d 100644 --- a/frame/base/bli_rntm.c +++ b/frame/base/bli_rntm.c @@ -1685,6 +1685,8 @@ static void aocl_zdscalv_dynamic else *nt_ideal = 64; + break; + default: /* Without this default condition, compiler will throw