summaryrefslogtreecommitdiff
path: root/gnu/packages/patches/llvm-3.6-fix-build-with-gcc-10.patch
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2025-08-19 21:59:41 +0200
committerAndreas Enge <andreas@enge.fr>2025-08-19 22:18:23 +0200
commitd11dcafc8464b2d34d96bea823ec1a92b2bf16f5 (patch)
tree600000104d437e2b7673dd7c5ab6d4a73e38e324 /gnu/packages/patches/llvm-3.6-fix-build-with-gcc-10.patch
parentd5b489a77c19580fb13b19b15af0b6885c93e31f (diff)
gnu: Remove llvm-3.6.
* gnu/packages/llvm.scm (llvm-3.6): Delete variable. * gnu/packages/patches/llvm-3.6-fix-build-with-gcc-10.patch: Remove file. * gnu/local.mk (dist_patch_DATA): Unregister file. Change-Id: Ideb23a850c9c4b3439d80eb1ed39a8485f3a3b07
Diffstat (limited to 'gnu/packages/patches/llvm-3.6-fix-build-with-gcc-10.patch')
-rw-r--r--gnu/packages/patches/llvm-3.6-fix-build-with-gcc-10.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/gnu/packages/patches/llvm-3.6-fix-build-with-gcc-10.patch b/gnu/packages/patches/llvm-3.6-fix-build-with-gcc-10.patch
deleted file mode 100644
index 4982587d15..0000000000
--- a/gnu/packages/patches/llvm-3.6-fix-build-with-gcc-10.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Adapted from https://github.com/digego/extempore/pull/322/files
-
---- a/include/llvm/IR/ValueMap.h 2015-08-04 00:30:24.000000000 +0200
-+++ b/include/llvm/IR/ValueMap.h 2018-07-14 21:09:09.769502736 +0200
-@@ -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);