summaryrefslogtreecommitdiff
path: root/include/llvm/ADT/PointerIntPair.h
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2012-03-06 07:14:54 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2012-03-06 07:14:54 +0000
commit0db235a2b0ed6ae5c3c870012061906054b6dbc4 (patch)
treec727a12dfaf3d26181baa798e0ff3a0de6bad7b4 /include/llvm/ADT/PointerIntPair.h
parentf0c094b1155e9316e93b28bfbd3153bc99d1ac95 (diff)
downloadllvm-0db235a2b0ed6ae5c3c870012061906054b6dbc4.tar.gz
llvm-0db235a2b0ed6ae5c3c870012061906054b6dbc4.tar.bz2
llvm-0db235a2b0ed6ae5c3c870012061906054b6dbc4.tar.xz
PointerUnion::getAddrOf() does not need to be template since we can only
use the first pointer type for it. Rename it to getAddrOfPtr1(). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152106 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT/PointerIntPair.h')
-rw-r--r--include/llvm/ADT/PointerIntPair.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/llvm/ADT/PointerIntPair.h b/include/llvm/ADT/PointerIntPair.h
index 85dbba2b4a..ccdcd1a8d1 100644
--- a/include/llvm/ADT/PointerIntPair.h
+++ b/include/llvm/ADT/PointerIntPair.h
@@ -92,10 +92,14 @@ public:
}
PointerTy const *getAddrOfPointer() const {
+ return const_cast<PointerIntPair *>(this)->getAddrOfPointer();
+ }
+
+ PointerTy *getAddrOfPointer() {
assert(Value == reinterpret_cast<intptr_t>(getPointer()) &&
"Can only return the address if IntBits is cleared and "
"PtrTraits doesn't change the pointer");
- return reinterpret_cast<PointerTy const *>(&Value);
+ return reinterpret_cast<PointerTy *>(&Value);
}
void *getOpaqueValue() const { return reinterpret_cast<void*>(Value); }