summaryrefslogtreecommitdiffstats
path: root/clang/lib/Frontend
diff options
context:
space:
mode:
authorJohn McCall <rjmccall@apple.com>2010-05-28 18:25:28 +0000
committerJohn McCall <rjmccall@apple.com>2010-05-28 18:25:28 +0000
commit61d8258fa3ef997c9e43058ba96290e61b7ca474 (patch)
tree06bf1c00b333fdb9a17964fc7634fbc8dfc4fd08 /clang/lib/Frontend
parent64824ea99ff662768450503278096ad76087bf89 (diff)
downloadbcm5719-llvm-61d8258fa3ef997c9e43058ba96290e61b7ca474.tar.gz
bcm5719-llvm-61d8258fa3ef997c9e43058ba96290e61b7ca474.zip
Roll back r104941.
llvm-svn: 104990
Diffstat (limited to 'clang/lib/Frontend')
-rw-r--r--clang/lib/Frontend/PCHReaderDecl.cpp1
-rw-r--r--clang/lib/Frontend/PCHWriterDecl.cpp1
2 files changed, 0 insertions, 2 deletions
diff --git a/clang/lib/Frontend/PCHReaderDecl.cpp b/clang/lib/Frontend/PCHReaderDecl.cpp
index 8af146d676c..1ef0441ebf6 100644
--- a/clang/lib/Frontend/PCHReaderDecl.cpp
+++ b/clang/lib/Frontend/PCHReaderDecl.cpp
@@ -171,7 +171,6 @@ void PCHDeclReader::VisitRecordDecl(RecordDecl *RD) {
RD->setHasFlexibleArrayMember(Record[Idx++]);
RD->setAnonymousStructOrUnion(Record[Idx++]);
RD->setHasObjectMember(Record[Idx++]);
- RD->setInvisibleToADL(Record[Idx++]);
}
void PCHDeclReader::VisitValueDecl(ValueDecl *VD) {
diff --git a/clang/lib/Frontend/PCHWriterDecl.cpp b/clang/lib/Frontend/PCHWriterDecl.cpp
index 0ce7d8fcae5..cc58e8ee465 100644
--- a/clang/lib/Frontend/PCHWriterDecl.cpp
+++ b/clang/lib/Frontend/PCHWriterDecl.cpp
@@ -169,7 +169,6 @@ void PCHDeclWriter::VisitRecordDecl(RecordDecl *D) {
Record.push_back(D->hasFlexibleArrayMember());
Record.push_back(D->isAnonymousStructOrUnion());
Record.push_back(D->hasObjectMember());
- Record.push_back(D->isInvisibleToADL());
Code = pch::DECL_RECORD;
}
OpenPOWER on IntegriCloud