diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-08-11 12:19:30 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-08-11 12:19:30 +0000 |
commit | 1c28331b57df1b99af4ff5dcb409cafbe171795c (patch) | |
tree | cbef2c4e46eb07858e8707ce48629bf73023ea67 /clang/lib/Frontend/PCHWriter.cpp | |
parent | 6a98131468162950c22a866d736e66e300fb2803 (diff) | |
download | bcm5719-llvm-1c28331b57df1b99af4ff5dcb409cafbe171795c.tar.gz bcm5719-llvm-1c28331b57df1b99af4ff5dcb409cafbe171795c.zip |
Speculatively revert r110610 " Make ObjCInterfaceDecl redeclarable,
and create separate decl nodes for forward declarations and the
definition," which appears to be causing significant Objective-C
breakage.
llvm-svn: 110803
Diffstat (limited to 'clang/lib/Frontend/PCHWriter.cpp')
-rw-r--r-- | clang/lib/Frontend/PCHWriter.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/clang/lib/Frontend/PCHWriter.cpp b/clang/lib/Frontend/PCHWriter.cpp index 990641294af..0eed4ccd71e 100644 --- a/clang/lib/Frontend/PCHWriter.cpp +++ b/clang/lib/Frontend/PCHWriter.cpp @@ -305,9 +305,7 @@ void PCHTypeWriter::VisitInjectedClassNameType(const InjectedClassNameType *T) { } void PCHTypeWriter::VisitObjCInterfaceType(const ObjCInterfaceType *T) { - // The stored declaration must be the first, but getDecl() returns the - // definition. - Writer.AddDeclRef(T->getDecl()->getFirstDeclaration(), Record); + Writer.AddDeclRef(T->getDecl(), Record); Code = pch::TYPE_OBJC_INTERFACE; } |