Re: [PATCH] analyzer: fix missing comma in initializer

2021-03-15 Thread David Malcolm via Gcc-patches
On Mon, 2021-03-15 at 09:32 +0100, Martin Liška wrote: > Fixes the following valid clang warning: > > gcc/analyzer/sm-file.cc:250:5: warning: suspicious concatenation of > string literals in an array initialization; > did you mean to separate the elements with a comma? [-Wstring- > concatenation]

[PATCH] analyzer: fix missing comma in initializer

2021-03-15 Thread Martin Liška
Fixes the following valid clang warning: gcc/analyzer/sm-file.cc:250:5: warning: suspicious concatenation of string literals in an array initialization; did you mean to separate the elements with a comma? [-Wstring-concatenation] Survives make check -k RUNTESTFLAGS="analyzer.exp". Ready to be