Missing change in r152106 for TinyPtrVector.

llvm-svn: 152201
This commit is contained in:
Eli Friedman 2012-03-07 03:37:32 +00:00
parent d4ba3eb480
commit da7e7da0cf
1 changed files with 1 additions and 1 deletions

View File

@ -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*>();
}