diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-08-24 21:25:37 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-08-24 21:25:37 +0000 |
commit | 4b054b26652e1c614265976c6fcfd3ce3c45ad97 (patch) | |
tree | 86d3e16b287617be6b616c132d3f5229c8a69c15 /clang/lib/Frontend/MultiplexConsumer.cpp | |
parent | eedcd9c1ea4c98b97714bcc7fc4167fd4cb47b37 (diff) | |
download | bcm5719-llvm-4b054b26652e1c614265976c6fcfd3ce3c45ad97.tar.gz bcm5719-llvm-4b054b26652e1c614265976c6fcfd3ce3c45ad97.zip |
PR29097: add an update record when we instantiate the default member
initializer of an imported field.
llvm-svn: 279667
Diffstat (limited to 'clang/lib/Frontend/MultiplexConsumer.cpp')
-rw-r--r-- | clang/lib/Frontend/MultiplexConsumer.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/lib/Frontend/MultiplexConsumer.cpp b/clang/lib/Frontend/MultiplexConsumer.cpp index 17cdaee4be0..8ef6df5e740 100644 --- a/clang/lib/Frontend/MultiplexConsumer.cpp +++ b/clang/lib/Frontend/MultiplexConsumer.cpp @@ -120,6 +120,7 @@ public: void CompletedImplicitDefinition(const FunctionDecl *D) override; void StaticDataMemberInstantiated(const VarDecl *D) override; void DefaultArgumentInstantiated(const ParmVarDecl *D) override; + void DefaultMemberInitializerInstantiated(const FieldDecl *D) override; void AddedObjCCategoryToInterface(const ObjCCategoryDecl *CatD, const ObjCInterfaceDecl *IFD) override; void FunctionDefinitionInstantiated(const FunctionDecl *D) override; @@ -201,6 +202,11 @@ void MultiplexASTMutationListener::DefaultArgumentInstantiated( for (size_t i = 0, e = Listeners.size(); i != e; ++i) Listeners[i]->DefaultArgumentInstantiated(D); } +void MultiplexASTMutationListener::DefaultMemberInitializerInstantiated( + const FieldDecl *D) { + for (size_t i = 0, e = Listeners.size(); i != e; ++i) + Listeners[i]->DefaultMemberInitializerInstantiated(D); +} void MultiplexASTMutationListener::AddedObjCCategoryToInterface( const ObjCCategoryDecl *CatD, const ObjCInterfaceDecl *IFD) { |