[(pushed)] fix Clang warning

Message ID 13330943-7eca-20ac-b6e9-2c61d6aaf048@suse.cz
State Committed
Commit e2e272ba76b3bfda4a04b0c89ba984f6f6f2d7ea
Headers
Series [(pushed)] fix Clang warning |

Commit Message

Martin Liška Nov. 30, 2022, 1:47 p.m. UTC
  Fixes:
gcc/fortran/parse.cc:5782:32: warning: for loop has empty body [-Wempty-body]

gcc/fortran/ChangeLog:

	* parse.cc (parse_omp_structured_block): Remove extra semicolon.
---
 gcc/fortran/parse.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/gcc/fortran/parse.cc b/gcc/fortran/parse.cc
index 51ff0fc6ace..cdae43fa1fd 100644
--- a/gcc/fortran/parse.cc
+++ b/gcc/fortran/parse.cc
@@ -5779,7 +5779,7 @@  parse_omp_structured_block (gfc_statement omp_st, bool workshare_stmts_only)
 	{
 	  gfc_omp_namelist *nl;
 	  for (nl = cp->ext.omp_clauses->lists[OMP_LIST_COPYPRIVATE];
-	      nl->next; nl = nl->next);
+	      nl->next; nl = nl->next)
 	    ;
 	  nl->next = new_st.ext.omp_clauses->lists[OMP_LIST_COPYPRIVATE];
 	}