summaryrefslogtreecommitdiff
path: root/gnu/packages/patches/llvm-3.x.1-fix-build-with-gcc.patch
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2025-09-19 21:39:55 +0200
committerAndreas Enge <andreas@enge.fr>2025-09-19 21:40:35 +0200
commit8d942405892b9c5fd2c455ef3a4218252aff31c4 (patch)
tree166c60745bdb2d766908183e432a2b2c53ae2baa /gnu/packages/patches/llvm-3.x.1-fix-build-with-gcc.patch
parent6ff714dfb1c8150b2d47fb3fcfc383300eb7f315 (diff)
gnu: Remove llvm-3.8.
* gnu/packages/llvm.scm (llvm-3.8): Delete variable. * gnu/packages/patches/llvm-3.x.1-fix-build-with-gcc.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Unregister file. Fixes: guix/guix#2101 Change-Id: I71cee0723420fb7f928c0d1c747a3bf4424fa344
Diffstat (limited to 'gnu/packages/patches/llvm-3.x.1-fix-build-with-gcc.patch')
-rw-r--r--gnu/packages/patches/llvm-3.x.1-fix-build-with-gcc.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/gnu/packages/patches/llvm-3.x.1-fix-build-with-gcc.patch b/gnu/packages/patches/llvm-3.x.1-fix-build-with-gcc.patch
deleted file mode 100644
index 75236c4069..0000000000
--- a/gnu/packages/patches/llvm-3.x.1-fix-build-with-gcc.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-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);