]> git.ipfire.org Git - thirdparty/gcc.git/commit
libstdc++: Fix clang analyzer suppression [PR 98605]
authorJonathan Wakely <jwakely@redhat.com>
Wed, 13 Jan 2021 11:03:58 +0000 (11:03 +0000)
committerJonathan Wakely <jwakely@redhat.com>
Wed, 13 Jan 2021 13:06:06 +0000 (13:06 +0000)
commit8d3636923a309074eb19240ebaa30c1a0801eaaf
tree8687fe0356d245fceb53cf8ec2d258a06d0cd268
parent92b131491c22eb4e4b663d226e9d97f1fd693063
libstdc++: Fix clang analyzer suppression [PR 98605]

The fix for PR libstdc++/82481 should only have applied for targets
where _GLIBCXX_HAVE_TLS is defined. Because it was also done for non-TLS
targets, it isn't possible to use clang's analyzers on non-TLS targets
if the code uses <mutex>. This fixes it by using a NOLINT comment on
the relevant line instead of testing #ifdef __clang_analyzer__ and
compiling different code when analyzing.

I'm not actually able to reproduce the analyzer warning with the tools
from Clang 10.0.1 so I'm not going to try to make the suppression more
specific with NOLINTNEXTLINE(clang-analyzer-code.StackAddressEscape).

libstdc++-v3/ChangeLog:

PR libstdc++/98605
* include/std/mutex (call_once): Use NOLINT to suppress clang
analyzer warnings.
libstdc++-v3/include/std/mutex