diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-09-27 22:37:28 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-09-27 22:37:28 +0000 |
commit | ec3bec0c7abd07bb9b372008e6870c44b1f5b318 (patch) | |
tree | f81cff1f97a6301aecb063195fec61fccd8957ee /clang/lib/Serialization/ASTReaderDecl.cpp | |
parent | 175d6411c822c5eb45febdb8e167bf1ae243d9e9 (diff) | |
download | bcm5719-llvm-ec3bec0c7abd07bb9b372008e6870c44b1f5b318.tar.gz bcm5719-llvm-ec3bec0c7abd07bb9b372008e6870c44b1f5b318.zip |
Kill FunctionDecl's IsCopyAssignment bit; it duplicated what could
already be determined by isCopyAssignmentOperator(), and was set too
late in the process for all clients to see the appropriate
value. Cleanup only; no functionality change.
llvm-svn: 114916
Diffstat (limited to 'clang/lib/Serialization/ASTReaderDecl.cpp')
-rw-r--r-- | clang/lib/Serialization/ASTReaderDecl.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/Serialization/ASTReaderDecl.cpp b/clang/lib/Serialization/ASTReaderDecl.cpp index e5a87b0c109..d51d5162b28 100644 --- a/clang/lib/Serialization/ASTReaderDecl.cpp +++ b/clang/lib/Serialization/ASTReaderDecl.cpp @@ -346,7 +346,6 @@ void ASTDeclReader::VisitFunctionDecl(FunctionDecl *FD) { FD->setHasWrittenPrototype(Record[Idx++]); FD->setDeleted(Record[Idx++]); FD->setTrivial(Record[Idx++]); - FD->setCopyAssignment(Record[Idx++]); FD->setHasImplicitReturnZero(Record[Idx++]); FD->setLocEnd(SourceLocation::getFromRawEncoding(Record[Idx++])); |