From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 74368 invoked by alias); 15 Feb 2016 18:03:34 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 74352 invoked by uid 89); 15 Feb 2016 18:03:33 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=UD:gdb.arch, gdb.arch, UD:arch X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Mon, 15 Feb 2016 18:03:33 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (Postfix) with ESMTPS id EB3708E69C for ; Mon, 15 Feb 2016 18:03:31 +0000 (UTC) Received: from host1.jankratochvil.net (ovpn-116-46.ams2.redhat.com [10.36.116.46]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u1FI3S6m021981 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Mon, 15 Feb 2016 13:03:31 -0500 Date: Mon, 15 Feb 2016 18:03:00 -0000 From: Jan Kratochvil To: gdb-patches@sourceware.org Subject: [testsuite obv+7.11] Add missing gdb.arch/i386-prologue.c prototypes Message-ID: <20160215180327.GA23579@host1.jankratochvil.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="EVF5PPMfhYS0aIcm" Content-Disposition: inline User-Agent: Mutt/1.5.24 (2015-08-30) X-IsSubscribed: yes X-SW-Source: 2016-02/txt/msg00469.txt.bz2 --EVF5PPMfhYS0aIcm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 97 trunk: a7a0a6a95bc111776129374c46edec3c3c2785cc 7.11: 906c69d06a46cec2f55941f7dc3a5323261796d5 --EVF5PPMfhYS0aIcm Content-Type: message/rfc822 Content-Disposition: inline Content-length: 2009 From: Jan Kratochvil Date: Mon, 15 Feb 2016 19:01:03 +0100 Subject: [PATCH] Add missing gdb.arch/i386-prologue.c prototypes Content-length: 1856 The testfile has not ran because: gdb.arch/i386-prologue.c:34:3: warning: implicit declaration of function 'standard' [-Wimplicit-function-declaration] standard (); ^ gdb.arch/i386-prologue.c:35:3: warning: implicit declaration of function 'stack_align_ecx' [-Wimplicit-function-declaration] stack_align_ecx (); ^ gdb.arch/i386-prologue.c:36:3: warning: implicit declaration of function 'stack_align_edx' [-Wimplicit-function-declaration] stack_align_edx (); ^ gdb.arch/i386-prologue.c:37:3: warning: implicit declaration of function 'stack_align_eax' [-Wimplicit-function-declaration] stack_align_eax (); ^ gdb/testsuite/ChangeLog 2016-02-15 Jan Kratochvil * gdb.arch/i386-prologue.c: Add missing prototypes. --- gdb/testsuite/ChangeLog | 4 ++++ gdb/testsuite/gdb.arch/i386-prologue.c | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 9dc5085..a62d358 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,9 @@ 2016-02-15 Jan Kratochvil + * gdb.arch/i386-prologue.c: Add missing prototypes. + +2016-02-15 Jan Kratochvil + * gdb.arch/i386-gnu-cfi.exp: Use standard_output_file. * gdb.arch/i386-prologue.exp: Likewise. * gdb.arch/i386-size.exp: Likewise. diff --git a/gdb/testsuite/gdb.arch/i386-prologue.c b/gdb/testsuite/gdb.arch/i386-prologue.c index 29c48c0..edad366 100644 --- a/gdb/testsuite/gdb.arch/i386-prologue.c +++ b/gdb/testsuite/gdb.arch/i386-prologue.c @@ -27,6 +27,10 @@ void gdb1253 (void); void gdb1718 (void); void gdb1338 (void); void jump_at_beginning (void); +void standard (void); +void stack_align_ecx (void); +void stack_align_edx (void); +void stack_align_eax (void); int main (void) -- 2.5.0 --EVF5PPMfhYS0aIcm--