Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 52a4d144 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

getrf: Remove extra fallthrough

parent 5c8cfc86
No related branches found
No related tags found
1 merge request!492Fix pedantic compilation warnings
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
* @author Emmanuel Agullo * @author Emmanuel Agullo
* @author Matthieu Kuhn * @author Matthieu Kuhn
* @author Alycia Lisito * @author Alycia Lisito
* @date 2024-03-16 * @date 2024-10-18
* @precisions normal z -> s d c * @precisions normal z -> s d c
* *
*/ */
...@@ -385,7 +385,6 @@ chameleon_pzgetrf_panel_facto( struct chameleon_pzgetrf_s *ws, ...@@ -385,7 +385,6 @@ chameleon_pzgetrf_panel_facto( struct chameleon_pzgetrf_s *ws,
break; break;
case ChamGetrfNoPiv: case ChamGetrfNoPiv:
chameleon_attr_fallthrough;
default: default:
chameleon_pzgetrf_panel_facto_nopiv( ws, A, ipiv, k, options ); chameleon_pzgetrf_panel_facto_nopiv( ws, A, ipiv, k, options );
} }
...@@ -407,7 +406,6 @@ chameleon_pzgetrf_panel_permute( struct chameleon_pzgetrf_s *ws, ...@@ -407,7 +406,6 @@ chameleon_pzgetrf_panel_permute( struct chameleon_pzgetrf_s *ws,
{ {
switch( ws->alg ) { switch( ws->alg ) {
case ChamGetrfPPiv: case ChamGetrfPPiv:
chameleon_attr_fallthrough;
case ChamGetrfPPivPerColumn: case ChamGetrfPPivPerColumn:
{ {
int m; int m;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment