From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from hamza.pair.com (hamza.pair.com [209.68.5.143]) by sourceware.org (Postfix) with ESMTPS id 2AFF63858C29 for ; Sat, 25 Nov 2023 14:22:02 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 2AFF63858C29 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=pfeifer.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=pfeifer.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 2AFF63858C29 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=209.68.5.143 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1700922123; cv=none; b=hg5K9E1dLxcRjtuFdQ2l1vDfOtbLm9wDhpn866rGt8ae3mlh3CiDku7CNyyff5XjCFef0ywN136EmtNriCXRsS7Oe4+1HiFXehWBWnNbgxp5wrgTVotsNoNNQhe64u94Xd+PUFH887+yLftmyl6EwpJKC1ppu6k9LuhIRaZLZ+s= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1700922123; c=relaxed/simple; bh=WAcESA9Vvd6XM/0/+fB81bK5q7XttoIL/c23kFq32QY=; h=Date:From:To:Subject:Message-ID:MIME-Version; b=HpM2iIT4cRwMdOZfkJaV+We67qDkXaNffRrnH9rUvaXr1Y4MomdEdffvGY92LLAQoV2fdH6ha2Y6zFqvLIZTU3EFM24+0nNqtgckbsPQNTm7IsDeDEc4liQWpCPxchOgeYmlsIXWiPx/Os0aLGGgmRIqqlkZht4V1eyQ1cpw7Ko= ARC-Authentication-Results: i=1; server2.sourceware.org Received: from hamza.pair.com (localhost [127.0.0.1]) by hamza.pair.com (Postfix) with ESMTP id ACF3B33E79; Sat, 25 Nov 2023 09:22:01 -0500 (EST) Received: from daya.localdomain (188-23-0-79.adsl.highway.telekom.at [188.23.0.79]) (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 hamza.pair.com (Postfix) with ESMTPSA id 2513433E87; Sat, 25 Nov 2023 09:22:01 -0500 (EST) Date: Sat, 25 Nov 2023 15:21:59 +0100 (CET) From: Gerald Pfeifer To: Joseph Myers cc: gcc-patches@gcc.gnu.org Subject: Re: c: tree: target: C2x (...) function prototypes and va_start relaxation In-Reply-To: Message-ID: <0a19be41-9638-3b5b-6abd-b18eb05e04ea@pfeifer.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Scanned-By: mailmunge 3.11 on 209.68.5.143 X-Spam-Status: No, score=-4.5 required=5.0 tests=BAYES_00,KAM_DMARC_STATUS,SPF_HELO_NONE,SPF_PASS,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: On Fri, 21 Oct 2022, Joseph Myers wrote: > C2x allows function prototypes to be given as (...), a prototype > meaning a variable-argument function with no named arguments. I noticed this did not make it into gcc-13/changes.html ? Was that intentional? Gerald