[Lldb-commits] [lldb] r198810 - Roll back my change to r198729; I'm going to revert it entirely.

Jason Molenda jmolenda at apple.com
Wed Jan 8 16:00:53 PST 2014


Author: jmolenda
Date: Wed Jan  8 18:00:53 2014
New Revision: 198810

URL: http://llvm.org/viewvc/llvm-project?rev=198810&view=rev
Log:
Roll back my change to r198729; I'm going to revert it entirely.

Modified:
    lldb/trunk/source/Symbol/ClangASTType.cpp

Modified: lldb/trunk/source/Symbol/ClangASTType.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Symbol/ClangASTType.cpp?rev=198810&r1=198809&r2=198810&view=diff
==============================================================================
--- lldb/trunk/source/Symbol/ClangASTType.cpp (original)
+++ lldb/trunk/source/Symbol/ClangASTType.cpp Wed Jan  8 18:00:53 2014
@@ -3245,7 +3245,7 @@ ClangASTType::GetChildClangTypeAtIndex (
         case clang::Type::ExtVector:
             if (idx_is_valid)
             {
-                const VectorType *array = cast<VectorType>(parent_qual_type.getTypePtr());
+                const VectorType *array = cast<VectorType>(GetQualType().getTypePtr());
                 if (array)
                 {
                     ClangASTType element_type (m_ast, array->getElementType());





More information about the lldb-commits mailing list