public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r13-4411] fix Clang warning
@ 2022-11-30 13:48 Martin Liska
  0 siblings, 0 replies; only message in thread
From: Martin Liska @ 2022-11-30 13:48 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:e2e272ba76b3bfda4a04b0c89ba984f6f6f2d7ea

commit r13-4411-ge2e272ba76b3bfda4a04b0c89ba984f6f6f2d7ea
Author: Martin Liska <mliska@suse.cz>
Date:   Wed Nov 30 14:47:03 2022 +0100

    fix Clang warning
    
    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.

Diff:
---
 gcc/fortran/parse.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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];
 	}

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-11-30 13:48 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-30 13:48 [gcc r13-4411] fix Clang warning Martin Liska

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).