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 | f7f52e7bf5a4dc36d45b98531e0b21e343fc19de (patch) | |
| tree | 29eba9a22ca1f3fade5a4025ec020a333d65c16b /lib/CodeGen/CodeGenTypes.cpp | |
| parent | adcf5b389acd7998742e3d2e807f72ef3abb8cfb (diff) | |
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.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65248 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenTypes.cpp')
| -rw-r--r-- | lib/CodeGen/CodeGenTypes.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenTypes.cpp b/lib/CodeGen/CodeGenTypes.cpp index a385d8c9d2..47ac79f70b 100644 --- a/lib/CodeGen/CodeGenTypes.cpp +++ b/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()); |
