[PATCH (pushed)] fix Clang warning

2022-11-30 Thread Martin Liška
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(-) diff --git a/gcc/fortran/parse.cc b

[PATCH][pushed] Fix clang warning (-Wstring-plus-int)

2021-04-21 Thread Martin Liška
This fixes: lto-plugin.c:642:7: warning: adding 'int' to a string does not append to the string [-Wstring-plus-int] Pushed as obvious, thanks, Martin lto-plugin/ChangeLog: * lto-plugin.c (exec_lto_wrapper): Make a temp variable. --- lto-plugin/lto-plugin.c | 6 +++--- 1 file changed,