From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by sourceware.org (Postfix) with ESMTPS id CDBAB3858C2A for ; Mon, 11 Dec 2023 09:11:22 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org CDBAB3858C2A Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org CDBAB3858C2A Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=170.10.129.124 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1702285884; cv=none; b=oFVlhCPGEjCorpdAuCDu0VlyhoiSNX8ElMepJMdxi1yFE/WucpNTUdKrpmIegFVkNMvU/ursthWVe2qHMtg/XoJeOBMDHnbfVaF48Sn075XuTlsumtfOcKPLqLys02G4wgdxV2O1ut8LWZ7L25HwouTWcByXYdiggJX5l/k+brQ= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1702285884; c=relaxed/simple; bh=1URZFxCyPwM+xJFVX1EYF0/DeClq+blmQ/lGqJ5ewJw=; h=DKIM-Signature:From:To:Subject:Date:Message-ID:MIME-Version; b=pUB3zMcQJk6jRoPsXkSuWesP7E5oD9EHWAtEkrsGEKMzW09q+D7vyGarUdFTCETIh2HhbctQUJTFCHpvaqBoNPHnDGg1qwIaGVoN1Gey79hSTqIUDGS9DepzlewK5HL5DpPo52OJgu7cHLJX7D8nl+bl9GpPuqI9L9C+3GK9ef4= ARC-Authentication-Results: i=1; server2.sourceware.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1702285882; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Gu96Jgx6VpVJlLFoGXlSai5mr4MzItBDCybUhlISXks=; b=jWuirP3xgORAxHaz0e/4IXtvDUFb/p4J3RtkdGjI2U09mBi4IOMIfrhz7l77gZeuB4G3Yk 4BePLwDJAJfK87uaIE4Gn3ZcSBAe8cDIRIZHCfqRGpfzWumSuAih8RJDdK/pSm1pYkKP4r Joi8VMgEmtFMjP0PIMQ7d5gy/NPRKqk= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-657-yQ7xhRoDMMav8hBTJqNNtQ-1; Mon, 11 Dec 2023 04:11:20 -0500 X-MC-Unique: yQ7xhRoDMMav8hBTJqNNtQ-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.rdu2.redhat.com [10.11.54.3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id C9410833947 for ; Mon, 11 Dec 2023 09:11:19 +0000 (UTC) Received: from oldenburg.str.redhat.com (unknown [10.39.192.141]) by smtp.corp.redhat.com (Postfix) with ESMTPS id F11101121306; Mon, 11 Dec 2023 09:11:18 +0000 (UTC) From: Florian Weimer To: Marek Polacek Cc: gcc-patches@gcc.gnu.org Subject: Re: [PATCH v3 11/11] c: Add new -Wdeclaration-missing-parameter-type permerror References: <700d70e4a2874645ddb67a8a335131d83b242e69.1700473918.git.fweimer@redhat.com> Date: Mon, 11 Dec 2023 10:11:17 +0100 In-Reply-To: (Marek Polacek's message of "Thu, 30 Nov 2023 16:10:14 -0500") Message-ID: <87fs09t87e.fsf@oldenburg.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.3 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.3 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-4.6 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,KAM_SHORT,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H4,RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_NONE,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: * Marek Polacek: > On Mon, Nov 20, 2023 at 10:56:42AM +0100, Florian Weimer wrote: >> This used to be a warning, enabled by default, without its own option. > > I think this patch is OK now. > =20 >> A subsequent change could improve diagnostics and provide spelling >> hints for declarations like =E2=80=9Cvoid function (int32t);=E2=80=9D. > > Feel free to open a PR. Good idea, it's now: Spelling hint for typos in parameter types in function prototypes Thanks, Florian