1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

allow TinyPtrVector to implicitly convert to ArrayRef.

llvm-svn: 145898
This commit is contained in:
Chris Lattner 2011-12-06 02:00:33 +00:00
parent a7f56028f8
commit edb34dd40a

View File

@ -37,6 +37,15 @@ public:
delete V;
}
// implicit conversion operator to ArrayRef.
operator ArrayRef<EltTy>() const {
if (Val.isNull())
return ArrayRef<EltTy>();
if (Val.template is<EltTy>())
return *Val.template getAddrOf<EltTy>();
return *Val.template get<VecTy*>();
}
bool empty() const {
// This vector can be empty if it contains no element, or if it
// contains a pointer to an empty vector.