From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15327 invoked by alias); 20 Oct 2002 21:16:02 -0000 Mailing-List: contact gcc-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-prs-owner@gcc.gnu.org Received: (qmail 15294 invoked by uid 71); 20 Oct 2002 21:16:01 -0000 Resent-Date: 20 Oct 2002 21:16:01 -0000 Resent-Message-ID: <20021020211601.15293.qmail@sources.redhat.com> Resent-From: gcc-gnats@gcc.gnu.org (GNATS Filer) Resent-Cc: gcc-prs@gcc.gnu.org, gcc-bugs@gcc.gnu.org Resent-Reply-To: gcc-gnats@gcc.gnu.org, patdoyle@ca.ibm.com Received: (qmail 14876 invoked by uid 61); 20 Oct 2002 21:10:40 -0000 Message-Id: <20021020211040.14875.qmail@sources.redhat.com> Date: Sun, 20 Oct 2002 14:16:00 -0000 From: patdoyle@ca.ibm.com Reply-To: patdoyle@ca.ibm.com To: gcc-gnats@gcc.gnu.org X-Send-Pr-Version: gnatsweb-2.9.3 (1.1.1.1.2.31) Subject: c/8294: Support another archetype in "format" function attribute X-SW-Source: 2002-10/txt/msg00764.txt.bz2 List-Id: >Number: 8294 >Category: c >Synopsis: Support another archetype in "format" function attribute >Confidential: no >Severity: non-critical >Priority: low >Responsible: unassigned >State: open >Class: change-request >Submitter-Id: net >Arrival-Date: Sun Oct 20 14:16:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: patdoyle@ca.ibm.com >Release: unknown-1.0 >Organization: >Environment: >Description: A common way to write vararg functions is to have the function take a count of the number of arguments that follow. (Let's call this, say, the "enumerated" format, just so I can refer to it below.) It would be nice if calls to this kind of function were checked by gcc to have the right number of arguments. This could be a variant of the "format" attribute, like the following: void foo(int arg_count, ...) __attribute__ ((format (enumerated(arg_count)))); In fact, even better would be if one could specify any linear function; for example, if the number of arguments should be 2*arg_count+1, then perhaps it could be declared like so: void foo(int arg_count, ...) __attribute__ ((format (enumerated(arg_count, 2, 1)))); This would enable it to handle cases I have seen that do data base queries, where the number of key-value pairs is passed: result_t query(char *table_name, int key_count, ...) __attribute__ ((format(enumerated(key_count, 2, 0)))); I hope this is the right forum for this kind of feature request. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: