~ruther/guix-local

ref: dfd929b3b180ca319a7fb8d8ac64ab58bcfd17e9 guix-local/gnu/packages/patches/llvm-3.x.1-fix-build-with-gcc.patch -rw-r--r-- 533 bytes
dfd929b3 — Andre A. Gomes gnu: nyxt: Update to 3.11.5. 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Patch from https://github.com/digego/extempore/issues/318

diff --git a/include/llvm/IR/ValueMap.h.orig b/include/llvm/IR/ValueMap.h
index ad518ac..d928f6a 100644
--- a/include/llvm/IR/ValueMap.h
+++ b/include/llvm/IR/ValueMap.h
@@ -99,7 +99,7 @@
   explicit ValueMap(const ExtraData &Data, unsigned NumInitBuckets = 64)
       : Map(NumInitBuckets), Data(Data) {}
 
-  bool hasMD() const { return MDMap; }
+  bool hasMD() const { return static_cast<bool>(MDMap); }
   MDMapT &MD() {
     if (!MDMap)
       MDMap.reset(new MDMapT);