From: Martin Liska Date: Wed, 30 Nov 2022 13:47:03 +0000 (+0100) Subject: fix Clang warning X-Git-Tag: basepoints/gcc-14~2796 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e2e272ba76b3bfda4a04b0c89ba984f6f6f2d7ea;p=thirdparty%2Fgcc.git 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 --git a/gcc/fortran/parse.cc b/gcc/fortran/parse.cc index 51ff0fc6ace5..cdae43fa1fda 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]; }