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;
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to