Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [clang][IFS][test][NFC] Tightening up clang-ifs tests to use -cc1 more often. | Puyan Lotfi | 2019-11-14 | 1 | -1/+1 |
| | | | | | | | Unless the test is explicitly testing a driver feature if clang interface stubs I have changed the tests to use %clang_cc1. This should make some changes I plan to make to the driver job pipeline cause fewer test changes and breakages. | ||||
* | [clang][IFS][test] Fixing buildbot test fails for clang-ifs. | Puyan Lotfi | 2019-11-08 | 1 | -2/+2 |
| | | | | | Checking for the exact triple fails on many bots. Leaving the triple check blank. | ||||
* | [clang][IFS] Adds support for more decl types in clang interface stubs. | Puyan Lotfi | 2019-11-08 | 1 | -0/+10 |
Adding support for processing the following Decls: NonTypeTemplateParmDecl, CXXConversionDecl, UnresolvedUsingValueDecl, UsingDecl, UsingShadowDecl, TypeAliasTemplateDecl, TypeAliasDecl, VarTemplateDecl, VarTemplateSpecializationDecl, UsingDirectiveDecl, TemplateTemplateParmDecl, ClassTemplatePartialSpecializationDecl, IndirectFieldDecl. Also, this allows for processing NamedDecls that don't have an identifier and skips over VarDecls that are dependent on template types. Differential Revision: https://reviews.llvm.org/D69995 |