From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18038 invoked by alias); 7 Oct 2014 16:41:02 -0000 Mailing-List: contact java-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-patches-owner@gcc.gnu.org Received: (qmail 17923 invoked by uid 89); 7 Oct 2014 16:41:01 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 X-HELO: gproxy1-pub.mail.unifiedlayer.com Received: from gproxy1-pub.mail.unifiedlayer.com (HELO gproxy1-pub.mail.unifiedlayer.com) (69.89.25.95) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with SMTP; Tue, 07 Oct 2014 16:41:00 +0000 Received: (qmail 7434 invoked by uid 0); 7 Oct 2014 16:40:56 -0000 Received: from unknown (HELO cmgw4) (10.0.90.85) by gproxy1.mail.unifiedlayer.com with SMTP; 7 Oct 2014 16:40:56 -0000 Received: from box522.bluehost.com ([74.220.219.122]) by cmgw4 with id 0Ng51p00A2f2jeq01Ng8o9; Tue, 07 Oct 2014 16:40:11 -0600 X-Authority-Analysis: v=2.1 cv=fdw+lSgF c=1 sm=1 tr=0 a=GsOEXm/OWkKvwdLVJsfwcA==:117 a=GsOEXm/OWkKvwdLVJsfwcA==:17 a=cNaOj0WVAAAA:8 a=f5113yIGAAAA:8 a=udL4O0NGDEAA:10 a=_cZRQKYwz3QA:10 a=zstS-IiYAAAA:8 a=PnD2wP_eR3oA:10 a=X1qvojbhiZEA:10 a=YMEBsNOA1628-eP6AhUA:9 a=P8yeceDkNhAA:10 a=7c3F1i8GU4sA:10 Received: from [71.33.139.67] (port=55230 helo=pokyo) by box522.bluehost.com with esmtpsa (TLSv1.2:AES128-GCM-SHA256:128) (Exim 4.82) (envelope-from ) id 1XbXnx-0003TF-CH; Tue, 07 Oct 2014 10:40:05 -0600 From: Tom Tromey To: Marek Polacek Cc: Tom Tromey , java-patches@gcc.gnu.org, GCC Patches Subject: Re: [Java PATCH] Generate declarations in jvgenmain.c References: <20141007083129.GB3503@redhat.com> <87fvezrho1.fsf@tromey.com> <20141007161518.GI3503@redhat.com> Date: Tue, 07 Oct 2014 16:41:00 -0000 In-Reply-To: <20141007161518.GI3503@redhat.com> (Marek Polacek's message of "Tue, 7 Oct 2014 18:15:19 +0200") Message-ID: <87bnpnrfz2.fsf@tromey.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Identified-User: {36111:box522.bluehost.com:elynrobi:tromey.com} {sentby:smtp auth 71.33.139.67 authed with tom+tromey.com} X-SW-Source: 2014-q4/txt/msg00018.txt.bz2 Marek> I saw declarations of JvRunMain{,Name} with no parameters and with Marek> some parameters. Oh yeah, duh. Marek> So I decided to make it prototype-less function Marek> declaration for now. I think we don't have to worry about Marek> -Wstrict-prototypes for now. Thanks for looking. Tom