diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-22 06:50:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-22 06:50:37 +0000 |
commit | ad8f750f71d5636abc134224e548f239a3f5d06d (patch) | |
tree | c0c53f751a683e12cb509f7a2bce92baefe9a608 /clang/lib/Frontend/PCHWriter.cpp | |
parent | 587cbe1ef291241925fa547d89b00e175fc329af (diff) | |
download | bcm5719-llvm-ad8f750f71d5636abc134224e548f239a3f5d06d.tar.gz bcm5719-llvm-ad8f750f71d5636abc134224e548f239a3f5d06d.zip |
ObjCQualifiedClass is dead, remove it.
llvm-svn: 69783
Diffstat (limited to 'clang/lib/Frontend/PCHWriter.cpp')
-rw-r--r-- | clang/lib/Frontend/PCHWriter.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/clang/lib/Frontend/PCHWriter.cpp b/clang/lib/Frontend/PCHWriter.cpp index 760578164b3..f34323c1604 100644 --- a/clang/lib/Frontend/PCHWriter.cpp +++ b/clang/lib/Frontend/PCHWriter.cpp @@ -228,14 +228,6 @@ void PCHTypeWriter::VisitObjCQualifiedIdType(const ObjCQualifiedIdType *T) { Code = pch::TYPE_OBJC_QUALIFIED_ID; } -void -PCHTypeWriter::VisitObjCQualifiedClassType(const ObjCQualifiedClassType *T) { - Record.push_back(T->getNumProtocols()); - for (unsigned I = 0, N = T->getNumProtocols(); I != N; ++I) - Writer.AddDeclRef(T->getProtocols(I), Record); - Code = pch::TYPE_OBJC_QUALIFIED_CLASS; -} - //===----------------------------------------------------------------------===// // Declaration serialization //===----------------------------------------------------------------------===// |