From owner-svn-src-head@freebsd.org Sat Dec 10 22:03:45 2016 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EA015C71D19; Sat, 10 Dec 2016 22:03:45 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B99B31733; Sat, 10 Dec 2016 22:03:45 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBAM3iiL075929; Sat, 10 Dec 2016 22:03:44 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBAM3ixZ075928; Sat, 10 Dec 2016 22:03:44 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201612102203.uBAM3ixZ075928@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Sat, 10 Dec 2016 22:03:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r309835 - head/contrib/llvm/lib/Bitcode/Writer X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Dec 2016 22:03:46 -0000 Author: dim Date: Sat Dec 10 22:03:44 2016 New Revision: 309835 URL: https://svnweb.freebsd.org/changeset/base/309835 Log: Tentatively apply https://reviews.llvm.org/D18730 to work around gcc PR 70528 (bogus error: constructor required before non-static data member). This should fix buildworld with the external gcc package. Reported by: https://jenkins.freebsd.org/job/FreeBSD_HEAD_amd64_gcc/ Modified: head/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.h Modified: head/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.h ============================================================================== --- head/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.h Sat Dec 10 21:23:21 2016 (r309834) +++ head/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.h Sat Dec 10 22:03:44 2016 (r309835) @@ -95,7 +95,7 @@ private: /// Number of strings in the prefix of the metadata range. unsigned NumStrings = 0; - MDRange() = default; + MDRange() {} explicit MDRange(unsigned First) : First(First) {} }; SmallDenseMap FunctionMDInfo;