public inbox for gcc-cvs@sourceware.org help / color / mirror / Atom feed
From: Martin Liska <marxin@gcc.gnu.org> To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-4821] contrib: filter out more unrelated warnings Date: Wed, 21 Dec 2022 08:08:57 +0000 (GMT) [thread overview] Message-ID: <20221221080857.B629C3858425@sourceware.org> (raw) https://gcc.gnu.org/g:0d1b5446bf17c14fce3428a005446539292fe27e commit r13-4821-g0d1b5446bf17c14fce3428a005446539292fe27e Author: Martin Liska <mliska@suse.cz> Date: Wed Dec 21 09:08:24 2022 +0100 contrib: filter out more unrelated warnings contrib/ChangeLog: * filter-clang-warnings.py: Skip Makefile and libffi warnings. Diff: --- contrib/filter-clang-warnings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/filter-clang-warnings.py b/contrib/filter-clang-warnings.py index 0973d74d8d9..56dce5af368 100755 --- a/contrib/filter-clang-warnings.py +++ b/contrib/filter-clang-warnings.py @@ -79,6 +79,8 @@ for line in lines: if i != -1: location = line[:i] message = line[i + len(token):] + if '/libffi/' in location or location.startswith('Makefile'): + continue if not skip_warning(location, message): total += 1 messages.add(line)
reply other threads:[~2022-12-21 8:08 UTC|newest] Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20221221080857.B629C3858425@sourceware.org \ --to=marxin@gcc.gnu.org \ --cc=gcc-cvs@gcc.gnu.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).