summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-devel/llvm/files/3.5.2/gcc-5.1.patch')
-rw-r--r--sys-devel/llvm/files/3.5.2/gcc-5.1.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/sys-devel/llvm/files/3.5.2/gcc-5.1.patch b/sys-devel/llvm/files/3.5.2/gcc-5.1.patch
deleted file mode 100644
index 7cb2817561c1..000000000000
--- a/sys-devel/llvm/files/3.5.2/gcc-5.1.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Index: include/llvm/ADT/IntrusiveRefCntPtr.h
-===================================================================
---- include/llvm/ADT/IntrusiveRefCntPtr.h (revision 218294)
-+++ include/llvm/ADT/IntrusiveRefCntPtr.h (revision 218295)
-@@ -197,6 +197,9 @@
- private:
- void retain() { if (Obj) IntrusiveRefCntPtrInfo<T>::retain(Obj); }
- void release() { if (Obj) IntrusiveRefCntPtrInfo<T>::release(Obj); }
-+
-+ template <typename X>
-+ friend class IntrusiveRefCntPtr;
- };
-
- template<class T, class U>