diff options
author | dim <dim@FreeBSD.org> | 2014-11-26 23:53:35 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2014-11-26 23:53:35 +0000 |
commit | 69259722ab66d0c77ca231cc795946a8f238c511 (patch) | |
tree | 26427d2426e2add57a5c30e026bfbd16f418a77d | |
parent | 7ef9d4d9e7c8bdead918314b63492aef33949e13 (diff) | |
download | FreeBSD-src-69259722ab66d0c77ca231cc795946a8f238c511.zip FreeBSD-src-69259722ab66d0c77ca231cc795946a8f238c511.tar.gz |
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.
-rw-r--r-- | contrib/llvm/include/llvm/Support/DynamicLibrary.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/llvm/include/llvm/Support/DynamicLibrary.h b/contrib/llvm/include/llvm/Support/DynamicLibrary.h index de47be6..2bb31a7 100644 --- a/contrib/llvm/include/llvm/Support/DynamicLibrary.h +++ b/contrib/llvm/include/llvm/Support/DynamicLibrary.h @@ -43,10 +43,11 @@ namespace sys { // Opaque data used to interface with OS-specific dynamic library handling. void *Data; - explicit DynamicLibrary(void *data = &Invalid) : Data(data) {} public: + explicit DynamicLibrary(void *data = &Invalid) : Data(data) {} + /// 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. |