From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1454919-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C76D0158021 for <garchives@archives.gentoo.org>; Wed, 9 Nov 2022 02:25:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 804F7E0901; Wed, 9 Nov 2022 02:25:53 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 59D26E0900 for <gentoo-commits@lists.gentoo.org>; Wed, 9 Nov 2022 02:25:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1FFCF33BE68 for <gentoo-commits@lists.gentoo.org>; Wed, 9 Nov 2022 02:25:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5E13470D for <gentoo-commits@lists.gentoo.org>; Wed, 9 Nov 2022 02:25:50 +0000 (UTC) From: "Sam James" <sam@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org> Message-ID: <1667960745.4982bec7b9623415fec4dc9d4d7a9696b47a4479.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/install-qa-check.d/ X-VCS-Repository: proj/portage X-VCS-Files: bin/install-qa-check.d/90gcc-warnings X-VCS-Directories: bin/install-qa-check.d/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4982bec7b9623415fec4dc9d4d7a9696b47a4479 X-VCS-Branch: master Date: Wed, 9 Nov 2022 02:25:50 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 944eaa20-b20f-4004-b24a-2e6da3433201 X-Archives-Hash: af0143866f8dfd2b1a41546720325483 commit: 4982bec7b9623415fec4dc9d4d7a9696b47a4479 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Wed Nov 9 02:22:06 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Nov 9 02:25:45 2022 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=4982bec7 install-qa-check.d/90gcc-warnings: formatting tweaks Group similar warnings together. Signed-off-by: Sam James <sam <AT> gentoo.org> bin/install-qa-check.d/90gcc-warnings | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bin/install-qa-check.d/90gcc-warnings b/bin/install-qa-check.d/90gcc-warnings index 7a859eb88..162e97459 100644 --- a/bin/install-qa-check.d/90gcc-warnings +++ b/bin/install-qa-check.d/90gcc-warnings @@ -19,18 +19,21 @@ gcc_warn_check() { # only will and does, no might :) 'warning: .*will.*\[-Wstrict-aliasing\]' 'warning: .*does.*\[-Wstrict-aliasing\]' + # implicit declaration of function ā...ā 'warning: .*\[-Wimplicit-function-declaration\]' # with -Wall, goes in pair with -Wimplicit-function-declaration # but without -Wall, we need to assert for it alone 'warning: .*incompatible implicit declaration of built-in function' 'warning: .*\[-Wbuiltin-declaration-mismatch\]' + # 'is used uninitialized in this function' and some more 'warning: .*\[-Wuninitialized\]' # comparisons like āX<=Y<=Zā do not have their mathematical meaning 'warning: .*mathematical meaning*\[-Wparentheses\]' # null argument where non-null required 'warning: .*\[-Wnonnull\]' + # array subscript is above/below/outside array bounds (FORTIFY_SOURCE) 'warning: .*\[-Warray-bounds\]' # attempt to free a non-heap object @@ -43,6 +46,7 @@ gcc_warn_check() { 'warning: .*\[-Wfortify-source\]' 'warning: .*assuming pointer wraparound does not occur' 'warning: .*escape sequence out of range' + # left-hand operand of comma expression has no effect 'warning: .*left.*comma.*\[-Wunused-value\]' # converting to non-pointer type ... from NULL and likes @@ -58,11 +62,13 @@ gcc_warn_check() { 'warning: .*\[-Wint-conversion\]' # warning: cast to ... from integer of different size (or smaller size) 'warning: .*\[-Wint-to-pointer-cast\]' + # outdated? 'warning: .*too few arguments for format' # format ... expects a matching ... argument # (iow, too few arguments for format in new wording :)) 'warning: .*matching.*\[-Wformat=\]' + # function returns address of local variable 'warning: .*\[-Wreturn-local-addr\]' # missing return at end of function, or non-void return in a void function