From owner-svn-src-all@FreeBSD.ORG Wed May 23 11:49:43 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 47851106566B; Wed, 23 May 2012 11:49:43 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from springbank.echomania.com (andric.com [IPv6:2001:888:2003:1001:230:48ff:fe51:76b6]) by mx1.freebsd.org (Postfix) with ESMTP id D3C6C8FC0A; Wed, 23 May 2012 11:49:42 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at springbank.echomania.com Received: from [192.168.1.6] (tensor.andric.com [87.251.56.140]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by springbank.echomania.com (Postfix) with ESMTPSA id 41E5BA7071; Wed, 23 May 2012 13:49:24 +0200 (CEST) Message-ID: <4FBCCED9.9050308@FreeBSD.org> Date: Wed, 23 May 2012 13:49:45 +0200 From: Dimitry Andric Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:13.0) Gecko/20120512 Thunderbird/13.0 MIME-Version: 1.0 To: "David E. O'Brien" References: <201205221818.q4MII7lk019626@svn.freebsd.org> In-Reply-To: <201205221818.q4MII7lk019626@svn.freebsd.org> X-Enigmail-Version: 1.5a1pre Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r235797 - head/contrib/gcc X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 11:49:43 -0000 On 2012-05-22 20:18, David E. O'Brien wrote: > Author: obrien > Date: Tue May 22 18:18:06 2012 > New Revision: 235797 > URL: http://svn.freebsd.org/changeset/base/235797 > > Log: > Do not incorrectly warn when printing a quad_t using "%qd" on 64-bit platforms. > > Modified: > head/contrib/gcc/c-format.c > > Modified: head/contrib/gcc/c-format.c > ============================================================================== > --- head/contrib/gcc/c-format.c Tue May 22 17:44:01 2012 (r235796) > +++ head/contrib/gcc/c-format.c Tue May 22 18:18:06 2012 (r235797) > @@ -287,7 +287,11 @@ static const format_length_info printf_l > { > { "h", FMT_LEN_h, STD_C89, "hh", FMT_LEN_hh, STD_C99 }, > { "l", FMT_LEN_l, STD_C89, "ll", FMT_LEN_ll, STD_C9L }, > +#ifdef __LP64__ > + { "q", FMT_LEN_l, STD_EXT, NULL, 0, 0 }, > +#else > { "q", FMT_LEN_ll, STD_EXT, NULL, 0, 0 }, > +#endif > { "L", FMT_LEN_L, STD_C89, NULL, 0, 0 }, > { "z", FMT_LEN_z, STD_C99, NULL, 0, 0 }, > { "Z", FMT_LEN_z, STD_EXT, NULL, 0, 0 }, Until all the additional warnings this causes have been fixed, can this commit please be reverted for now?