summaryrefslogtreecommitdiff
path: root/clang/test/Modules/DebugInfoNamespace.cpp
AgeCommit message (Collapse)Author
2022-12-12[ZOS] Convert tests to check 'target={{.*}}-zos{{.*}}'Paul Robinson
Also add 'system-zos' as a lit feature and use it where needed. Part of the project to eliminate special handling for triples in lit expressions. Differential Revision: https://reviews.llvm.org/D139444
2022-12-02[lit][AIX] Convert clang tests to use 'target={{.*}}-aix{{.*}}'Paul Robinson
Part of the project to eliminate special handling for triples in lit expressions. Differential Revision: https://reviews.llvm.org/D137437
2021-09-16[AIX][ZOS] Disable LIT tests on AIX and z/OS due to lack of Objective-C supportJake Egan
AIX and z/OS lack Objective-C support, so mark these tests as unsupported for AIX and z/OS. Reviewed By: jsji Differential Revision: https://reviews.llvm.org/D109060
2017-05-11Module Debug Info: Emit namespaced C++ forward decls in the correct module.Adrian Prantl
The AST merges NamespaceDecls, but for module debug info it is important to put a namespace decl (or rather its children) into the correct (sub-)module, so we need to use the parent module of the decl that triggered this namespace to be serialized as a second key when looking up DINamespace nodes. rdar://problem/29339538 llvm-svn: 302840