diff options
author | Adrian Prantl <aprantl@apple.com> | 2015-10-23 17:02:22 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2015-10-23 17:02:22 +0000 |
commit | d43fe0bd39ab70b739123853ebd0c2991512b9d7 (patch) | |
tree | 5d7acde54c327aa36118c8d180001686a00fed20 /clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp | |
parent | 8157a8874d239a45622da7d5f9e8e5d08884dea3 (diff) | |
download | llvm-d43fe0bd39ab70b739123853ebd0c2991512b9d7.zip llvm-d43fe0bd39ab70b739123853ebd0c2991512b9d7.tar.gz llvm-d43fe0bd39ab70b739123853ebd0c2991512b9d7.tar.bz2 |
Module Debugging: Emit module debug info for types inside of Objective-C
containers.
rdar://problem/23196170
llvm-svn: 251120
Diffstat (limited to 'clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp')
-rw-r--r-- | clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp b/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp index 7989b95..b397eb3 100644 --- a/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp +++ b/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp @@ -171,6 +171,10 @@ public: return true; } + void HandleTopLevelDeclInObjCContainer(DeclGroupRef D) override { + HandleTopLevelDecl(D); + } + void HandleTagDeclDefinition(TagDecl *D) override { if (Diags.hasErrorOccurred()) return; |