<rdar://problem/13565393>

If a register is in a ValueObject, be sure to print its children if it is a vector type.

llvm-svn: 180237
This commit is contained in:
Greg Clayton 2013-04-25 01:06:07 +00:00
parent 0fa5c974ef
commit 9d49056ef0
1 changed files with 1 additions and 1 deletions

View File

@ -344,7 +344,7 @@ ValueObjectRegister::GetTypeName()
size_t
ValueObjectRegister::CalculateNumChildren()
{
return 0;
return ClangASTContext::GetNumChildren(GetClangAST(), GetClangType(), true);
}
clang::ASTContext *