From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5620 invoked by alias); 7 Jul 2011 02:08:10 -0000 Received: (qmail 5525 invoked by uid 22791); 7 Jul 2011 02:08:09 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 07 Jul 2011 02:07:56 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 1E9152BB277; Wed, 6 Jul 2011 22:07:55 -0400 (EDT) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id NZmemv7cspvs; Wed, 6 Jul 2011 22:07:55 -0400 (EDT) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id E70262BB252; Wed, 6 Jul 2011 22:07:54 -0400 (EDT) Received: by joel.gnat.com (Postfix, from userid 1000) id 97889145615; Wed, 6 Jul 2011 19:07:52 -0700 (PDT) Date: Thu, 07 Jul 2011 07:01:00 -0000 From: Joel Brobecker To: GDB Administrator Cc: gdb-patches@sourceware.org Subject: Re: New ARI warning Thu Jul 7 01:55:00 UTC 2011 Message-ID: <20110707020752.GK2407@adacore.com> References: <20110707015500.GA6660@sourceware.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="Qxx1br4bt0+wmkIi" Content-Disposition: inline In-Reply-To: <20110707015500.GA6660@sourceware.org> User-Agent: Mutt/1.5.20 (2009-06-14) 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 X-SW-Source: 2011-07/txt/msg00228.txt.bz2 --Qxx1br4bt0+wmkIi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 228 > 404a405 > > gdb/jit.c:44: code: function call in first column: Function name in first column should be restricted to function implementation > gdb/jit.c:44:jit_inferior_init (struct gdbarch *gdbarch); Fixed thusly: -- Joel --Qxx1br4bt0+wmkIi Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="jit-ari.diff" Content-length: 1073 commit e4f297fa22d3ffbb9f114931a1530dce3b3b97bd Author: Joel Brobecker Date: Wed Jul 6 19:03:34 2011 -0700 Minor forward declaration reformatting (jit.c) gdb/ChangeLog: * jit.c (jit_inferior_init): Reformat forward declaration. diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 73f5340..a01bf0a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2011-07-06 Joel Brobecker + + * jit.c (jit_inferior_init): Reformat forward declaration. + 2011-07-06 Matt Rice * MAINTAINERS (Write After Approval): Add myself to the list. diff --git a/gdb/jit.c b/gdb/jit.c index 01ac5fa..eb1bcc7 100644 --- a/gdb/jit.c +++ b/gdb/jit.c @@ -40,8 +40,7 @@ static const char *const jit_descriptor_name = "__jit_debug_descriptor"; static const struct inferior_data *jit_inferior_data = NULL; -static void -jit_inferior_init (struct gdbarch *gdbarch); +static void jit_inferior_init (struct gdbarch *gdbarch); /* Non-zero if we want to see trace of jit level stuff. */ --Qxx1br4bt0+wmkIi--