diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-10-27 21:01:01 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-10-27 21:01:01 +0000 |
commit | 35b5753e1797f919f61066bfabe3b0b35c8e91c1 (patch) | |
tree | 5310c7ea560a5f16b1e8dcbfed5141184966af5d /clang/lib/Frontend/PCHReaderDecl.cpp | |
parent | afca3b4a5c85b000ce7fe5ebf8518bbb63edb91b (diff) | |
download | bcm5719-llvm-35b5753e1797f919f61066bfabe3b0b35c8e91c1.tar.gz bcm5719-llvm-35b5753e1797f919f61066bfabe3b0b35c8e91c1.zip |
Rename FunctionDecl::isInline/setInline to
FunctionDecl::isInlineSpecified/setInlineSpecified.
llvm-svn: 85305
Diffstat (limited to 'clang/lib/Frontend/PCHReaderDecl.cpp')
-rw-r--r-- | clang/lib/Frontend/PCHReaderDecl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Frontend/PCHReaderDecl.cpp b/clang/lib/Frontend/PCHReaderDecl.cpp index c3690fb7a16..b9ece21f74c 100644 --- a/clang/lib/Frontend/PCHReaderDecl.cpp +++ b/clang/lib/Frontend/PCHReaderDecl.cpp @@ -162,7 +162,7 @@ void PCHDeclReader::VisitFunctionDecl(FunctionDecl *FD) { FD->setPreviousDeclaration( cast_or_null<FunctionDecl>(Reader.GetDecl(Record[Idx++]))); FD->setStorageClass((FunctionDecl::StorageClass)Record[Idx++]); - FD->setInline(Record[Idx++]); + FD->setInlineSpecified(Record[Idx++]); FD->setVirtualAsWritten(Record[Idx++]); FD->setPure(Record[Idx++]); FD->setHasInheritedPrototype(Record[Idx++]); |