Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 10 Dec 2016 22:03:44 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
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
Message-ID:  <201612102203.uBAM3ixZ075928@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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<unsigned, MDRange, 1> FunctionMDInfo;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612102203.uBAM3ixZ075928>