diff options
| author | Steve Naroff <snaroff@apple.com> | 2009-02-21 21:17:01 +0000 |
|---|---|---|
| committer | Steve Naroff <snaroff@apple.com> | 2009-02-21 21:17:01 +0000 |
| commit | 8487e3e541a2e7146f32cf4e86a287992830b36a (patch) | |
| tree | de823482aab0180f089003c3952107e1e0a6fd55 /clang/lib/CodeGen | |
| parent | 3283ff5088010e73f37c094edc71c0a35391b1ce (diff) | |
| download | bcm5719-llvm-8487e3e541a2e7146f32cf4e86a287992830b36a.tar.gz bcm5719-llvm-8487e3e541a2e7146f32cf4e86a287992830b36a.zip | |
More work to integrate newly added ObjCQualifiedClassType into the type system.
This is necessary 'plumbing' to fix <rdar://problem/6497631> Message lookup is sometimes different than gcc's.
llvm-svn: 65248
Diffstat (limited to 'clang/lib/CodeGen')
| -rw-r--r-- | clang/lib/CodeGen/CodeGenTypes.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenTypes.cpp b/clang/lib/CodeGen/CodeGenTypes.cpp index a385d8c9d29..47ac79f70b5 100644 --- a/clang/lib/CodeGen/CodeGenTypes.cpp +++ b/clang/lib/CodeGen/CodeGenTypes.cpp @@ -290,6 +290,7 @@ const llvm::Type *CodeGenTypes::ConvertNewType(QualType T) { } case Type::ObjCQualifiedId: + case Type::ObjCQualifiedClass: // Protocols don't influence the LLVM type. return ConvertTypeRecursive(Context.getObjCIdType()); |

