From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31392 invoked by alias); 11 Feb 2002 04:42:56 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 31221 invoked from network); 11 Feb 2002 04:42:48 -0000 Received: from unknown (HELO duracef.shout.net) (204.253.184.12) by sources.redhat.com with SMTP; 11 Feb 2002 04:42:48 -0000 Received: (from mec@localhost) by duracef.shout.net (8.11.6/8.11.6) id g1B4glt19667 for gdb-patches@sources.redhat.com; Sun, 10 Feb 2002 22:42:47 -0600 Date: Sun, 10 Feb 2002 20:42:00 -0000 From: Michael Elizabeth Chastain Message-Id: <200202110442.g1B4glt19667@duracef.shout.net> To: gdb-patches@sources.redhat.com Subject: PATCH: obvious: testsuite/gdb.base/funcargs.c: fix declaration X-SW-Source: 2002-02/txt/msg00315.txt.bz2 These declarations have been broken for a long time. The prototyped declarations were already correct; the non-prototyped declarations were just plain wrong. Gcc HEAD just started complaining this week, causing a bunch of ERRORs and WRANINGs. Tested on native i686-pc-linux-gnulibc2.2-rh7.2 with gcc 3.0.2 and gcc HEAD. This fixes half of PR gdb/348. I'm committing this as obvious. Michael Elizabeth Chastain "love without fear" === 2002-02-10 Michael Chastain * gdb.base/funcargs.c (localvars_after_alloca): Fix return type. (call_after_alloca): Ditto. Index: testsuite/gdb.base/funcargs.c =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/funcargs.c,v retrieving revision 1.1.1.2 diff -c -3 -p -r1.1.1.2 funcargs.c *** funcargs.c 1999/06/28 16:03:13 1.1.1.2 --- funcargs.c 2002/02/11 04:40:31 *************** void test_struct_args () *** 634,640 **** #ifdef PROTOTYPES void localvars_after_alloca (char c, short s, int i, long l) #else ! int localvars_after_alloca (c, s, i, l) char c; short s; --- 634,640 ---- #ifdef PROTOTYPES void localvars_after_alloca (char c, short s, int i, long l) #else ! void localvars_after_alloca (c, s, i, l) char c; short s; *************** char c; int i; short s; long l; unsigned *** 671,677 **** #ifdef PROTOTYPES void call_after_alloca (char c, short s, int i, long l) #else ! int call_after_alloca (c, s, i, l) char c; short s; --- 671,677 ---- #ifdef PROTOTYPES void call_after_alloca (char c, short s, int i, long l) #else ! void call_after_alloca (c, s, i, l) char c; short s;