From owner-svn-src-all@FreeBSD.ORG Tue Oct 29 20:35:29 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7255C8BF; Tue, 29 Oct 2013 20:35:29 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5D4E024AE; Tue, 29 Oct 2013 20:35:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9TKZT6j024603; Tue, 29 Oct 2013 20:35:29 GMT (envelope-from sbruno@svn.freebsd.org) Received: (from sbruno@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9TKZTIG024601; Tue, 29 Oct 2013 20:35:29 GMT (envelope-from sbruno@svn.freebsd.org) Message-Id: <201310292035.r9TKZTIG024601@svn.freebsd.org> From: Sean Bruno Date: Tue, 29 Oct 2013 20:35:29 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r257360 - in head/contrib/binutils/gas: . config X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 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: Tue, 29 Oct 2013 20:35:29 -0000 Author: sbruno Date: Tue Oct 29 20:35:28 2013 New Revision: 257360 URL: http://svnweb.freebsd.org/changeset/base/257360 Log: Queisce warning about empty bodies in these loops by bumping the ;; to the next line. Modified: head/contrib/binutils/gas/config/atof-ieee.c head/contrib/binutils/gas/symbols.c Modified: head/contrib/binutils/gas/config/atof-ieee.c ============================================================================== --- head/contrib/binutils/gas/config/atof-ieee.c Tue Oct 29 20:04:50 2013 (r257359) +++ head/contrib/binutils/gas/config/atof-ieee.c Tue Oct 29 20:35:28 2013 (r257360) @@ -420,7 +420,8 @@ gen_to_words (LITTLENUM_TYPE *words, int - generic_floating_point_number.low); /* Seek (and forget) 1st significant bit. */ - for (exponent_skippage = 0; !next_bits (1); ++exponent_skippage);; + for (exponent_skippage = 0; !next_bits (1); ++exponent_skippage) + ;; exponent_1 = (generic_floating_point_number.exponent + generic_floating_point_number.leader + 1 Modified: head/contrib/binutils/gas/symbols.c ============================================================================== --- head/contrib/binutils/gas/symbols.c Tue Oct 29 20:04:50 2013 (r257359) +++ head/contrib/binutils/gas/symbols.c Tue Oct 29 20:35:28 2013 (r257360) @@ -1666,7 +1666,8 @@ dollar_label_name (register long n, /* w *q = i % 10 + '0'; i /= 10; } - while ((*p++ = *--q) != '\0');; + while ((*p++ = *--q) != '\0') + ;; /* The label, as a '\0' ended string, starts at symbol_name_build. */ return symbol_name_build; @@ -1837,7 +1838,8 @@ fb_label_name (long n, /* We just saw "n *q = i % 10 + '0'; i /= 10; } - while ((*p++ = *--q) != '\0');; + while ((*p++ = *--q) != '\0') + ;; /* The label, as a '\0' ended string, starts at symbol_name_build. */ return (symbol_name_build);