From 52a4d1441bd29d76a7255b8ee0724b9d1d50dfc2 Mon Sep 17 00:00:00 2001 From: Mathieu Faverge <mathieu.faverge@inria.fr> Date: Thu, 17 Oct 2024 21:20:00 +0200 Subject: [PATCH] getrf: Remove extra fallthrough --- compute/pzgetrf.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/compute/pzgetrf.c b/compute/pzgetrf.c index a56e1c9a1..706f9fbcb 100644 --- a/compute/pzgetrf.c +++ b/compute/pzgetrf.c @@ -17,7 +17,7 @@ * @author Emmanuel Agullo * @author Matthieu Kuhn * @author Alycia Lisito - * @date 2024-03-16 + * @date 2024-10-18 * @precisions normal z -> s d c * */ @@ -385,7 +385,6 @@ chameleon_pzgetrf_panel_facto( struct chameleon_pzgetrf_s *ws, break; case ChamGetrfNoPiv: - chameleon_attr_fallthrough; default: chameleon_pzgetrf_panel_facto_nopiv( ws, A, ipiv, k, options ); } @@ -407,7 +406,6 @@ chameleon_pzgetrf_panel_permute( struct chameleon_pzgetrf_s *ws, { switch( ws->alg ) { case ChamGetrfPPiv: - chameleon_attr_fallthrough; case ChamGetrfPPivPerColumn: { int m; -- GitLab