diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2007-12-17 21:03:50 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2007-12-17 21:03:50 +0000 |
commit | c569249ca0ab755ac79d8cbbfcb2bcae19743624 (patch) | |
tree | 3f2598d15d6ca1e52e8418bd4d1191f49a751019 /CodeGen/CodeGenTypes.cpp | |
parent | 2f6974a14c28a9ea56232fdd926c430f755bdbbf (diff) |
Patch to implemented objective-c's dynamic object pointer qualified with
the protocol list (id<P,...> types).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45121 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'CodeGen/CodeGenTypes.cpp')
-rw-r--r-- | CodeGen/CodeGenTypes.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CodeGen/CodeGenTypes.cpp b/CodeGen/CodeGenTypes.cpp index cc40af8f94..ac223bcd24 100644 --- a/CodeGen/CodeGenTypes.cpp +++ b/CodeGen/CodeGenTypes.cpp @@ -251,6 +251,10 @@ const llvm::Type *CodeGenTypes::ConvertNewType(QualType T) { assert(0 && "FIXME: add missing functionality here"); break; + case Type::ObjcQualifiedId: + assert(0 && "FIXME: add missing functionality here"); + break; + case Type::Tagged: const TagType &TT = cast<TagType>(Ty); const TagDecl *TD = TT.getDecl(); |