forked from OSchip/llvm-project
Missing change in r152106 for TinyPtrVector.
llvm-svn: 152201
This commit is contained in:
parent
d4ba3eb480
commit
da7e7da0cf
|
@ -42,7 +42,7 @@ public:
|
|||
if (Val.isNull())
|
||||
return ArrayRef<EltTy>();
|
||||
if (Val.template is<EltTy>())
|
||||
return *Val.template getAddrOf<EltTy>();
|
||||
return *Val.getAddrOfPtr1();
|
||||
return *Val.template get<VecTy*>();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue