[Lldb-commits] [lldb] r109802 - /lldb/trunk/source/Symbol/ClangASTContext.cpp

Greg Clayton gclayton at apple.com
Thu Jul 29 13:38:50 PDT 2010


Author: gclayton
Date: Thu Jul 29 15:38:50 2010
New Revision: 109802

URL: http://llvm.org/viewvc/llvm-project?rev=109802&view=rev
Log:
Removed pending TODOs after resolving them with help of the clang folks and the discussion list.

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

Modified: lldb/trunk/source/Symbol/ClangASTContext.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Symbol/ClangASTContext.cpp?rev=109802&r1=109801&r2=109802&view=diff
==============================================================================
--- lldb/trunk/source/Symbol/ClangASTContext.cpp (original)
+++ lldb/trunk/source/Symbol/ClangASTContext.cpp Thu Jul 29 15:38:50 2010
@@ -2601,14 +2601,8 @@
         {
         case clang::Type::ObjCObject:
         case clang::Type::ObjCInterface:
-        // TODO: find out if I need to make a pointer or objc pointer for "clang::Type::ObjCObjectPointer" types
-        //case clang::Type::ObjCObjectPointer: 
             return getASTContext()->getObjCObjectPointerType(qual_type).getAsOpaquePtr();
 
-        // TODO: can we detect if this type is a block type?
-//      case clang::Type::BlockType:
-//          return getASTContext()->getBlockPointerType(qual_type).getAsOpaquePtr();
-        
         default:
             return getASTContext()->getPointerType(qual_type).getAsOpaquePtr();
         }





More information about the lldb-commits mailing list