summaryrefslogtreecommitdiffstats
path: root/contrib/llvm/patches/patch-14-llvm-r216571-dynamiclib-usability.diff
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm/patches/patch-14-llvm-r216571-dynamiclib-usability.diff')
-rw-r--r--contrib/llvm/patches/patch-14-llvm-r216571-dynamiclib-usability.diff32
1 files changed, 0 insertions, 32 deletions
diff --git a/contrib/llvm/patches/patch-14-llvm-r216571-dynamiclib-usability.diff b/contrib/llvm/patches/patch-14-llvm-r216571-dynamiclib-usability.diff
deleted file mode 100644
index ff0a6d1..0000000
--- a/contrib/llvm/patches/patch-14-llvm-r216571-dynamiclib-usability.diff
+++ /dev/null
@@ -1,32 +0,0 @@
-Pull in r216571 from upstream llvm trunk (by Zachary Turner):
-
- Fix some semantic usability issues with DynamicLibrary.
-
- This patch allows invalid DynamicLibrary instances to be
- constructed, and fixes the const-correctness of the isValid()
- method.
-
- No functional change.
-
-This is needed for supporting the upgrade to a newer LLDB snapshot.
-
-Introduced here: http://svnweb.freebsd.org/changeset/base/275153
-
-Index: include/llvm/Support/DynamicLibrary.h
-===================================================================
---- include/llvm/Support/DynamicLibrary.h
-+++ include/llvm/Support/DynamicLibrary.h
-@@ -43,10 +43,11 @@ namespace sys {
- // Opaque data used to interface with OS-specific dynamic library handling.
- void *Data;
-
-+ public:
- explicit DynamicLibrary(void *data = &Invalid) : Data(data) {}
-- public:
-+
- /// Returns true if the object refers to a valid library.
-- bool isValid() { return Data != &Invalid; }
-+ bool isValid() const { return Data != &Invalid; }
-
- /// Searches through the library for the symbol \p symbolName. If it is
- /// found, the address of that symbol is returned. If not, NULL is returned.
OpenPOWER on IntegriCloud