diff options
| -rw-r--r-- | clang/AST/ASTContext.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/AST/ASTContext.cpp b/clang/AST/ASTContext.cpp index 31d9255a4ba..3aead2f9311 100644 --- a/clang/AST/ASTContext.cpp +++ b/clang/AST/ASTContext.cpp @@ -200,7 +200,8 @@ ASTContext::getTypeInfo(QualType T, SourceLocation L) {      Size = EltInfo.first*CAT->getSize().getZExtValue();      Align = EltInfo.second;      break; -  }     +  } +  case Type::OCUVector:    case Type::Vector: {      std::pair<uint64_t, unsigned> EltInfo =         getTypeInfo(cast<VectorType>(T)->getElementType(), L);  | 

