--- htdocs/gcc-11/changes.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/htdocs/gcc-11/changes.html b/htdocs/gcc-11/changes.html index 7eeffb98..05b182bc 100644 --- a/htdocs/gcc-11/changes.html +++ b/htdocs/gcc-11/changes.html @@ -519,6 +519,10 @@ a work-in-progress.</p> <a href="https://gcc.gnu.org/onlinedocs/gcc/Static-Analyzer-Options.html">-fanalyzer</a> is enabled. </li> + <li>The analyzer can now be extended by GCC plugins, allowing for + domain-specific path-sensitive warnings. An example of using a + <a href="https://gcc.gnu.org/git/?p=gcc.git;a=commitdiff;h=66dde7bc64b75d4a338266333c9c490b12d49825">GCC plugin to check for misuses of CPython's global interpreter lock</a> + can be seen in the test suite</li> <li>The analyzer has gained new debugging options <a href="https://gcc.gnu.org/onlinedocs/gcc/Static-Analyzer-Options.html#index-fdump-analyzer-json">-fdump-analyzer-json</a> and <a href="https://gcc.gnu.org/onlinedocs/gcc/Static-Analyzer-Options.html#index-fno-analyzer-feasibility">-fno-analyzer-feasibility</a>. -- 2.26.2
[PATCH 1/6] gcc 11: -fanalyzer now supports GCC plugins
David Malcolm via Gcc-patches Fri, 22 Jan 2021 12:50:46 -0800
- [committed 0/6] wwwdocs: various gcc-11/chan... David Malcolm via Gcc-patches
- [PATCH 1/6] gcc 11: -fanalyzer now supp... David Malcolm via Gcc-patches
- [PATCH 2/6] gcc 11: libgccjit is no lon... David Malcolm via Gcc-patches
- [PATCH 4/6] gcc 11: document GCC_EXTRA_... David Malcolm via Gcc-patches
- [PATCH 3/6] gcc 11: document new malloc... David Malcolm via Gcc-patches
- [PATCH 6/6] gcc 11: add documentation l... David Malcolm via Gcc-patches
- [PATCH 5/6] gcc 11: add <code> wi... David Malcolm via Gcc-patches