Give the 'signed/unsigned wchar_t' extension a warning flag, and followGCC 9 in promoting it to an error by default.llvm-svn: 367255
Restore test files accidentally deleted in r354839I think there must be a bug in git-llvm causing parent directories to bedeleted when the diff deletes files in a subdirectory. Perhaps it isWindo
Restore test files accidentally deleted in r354839I think there must be a bug in git-llvm causing parent directories to bedeleted when the diff deletes files in a subdirectory. Perhaps it isWindows-only.There has been a behavior change, so some of these tests now fail. Ihave marked them XFAIL and will fix them in a follow-up to separate thechanges.llvm-svn: 360699
show more ...
Revert r354832 "[ASTImporter] Add support for importing ChooseExpr AST nodes."Test does not pass on Windowsllvm-svn: 354839
[ASTImporter] Support LambdaExprs and improve template supportAlso, a number of style and bug fixes was done: * ASTImporterTest: added sanity check for source node * ExternalASTMerger: better
[ASTImporter] Support LambdaExprs and improve template supportAlso, a number of style and bug fixes was done: * ASTImporterTest: added sanity check for source node * ExternalASTMerger: better lookup for template specializations * ASTImporter: don't add templated declarations into DeclContext * ASTImporter: introduce a helper, ImportTemplateArgumentListInfo getting SourceLocations * ASTImporter: proper set ParmVarDecls for imported FunctionProtoTypeLocDifferential Revision: https://reviews.llvm.org/D42301llvm-svn: 323519
[ASTImporter] Support default argument initialization of ParmVarDeclsPatch by Peter Szecsi!Differential Revision: https://reviews.llvm.org/D29612llvm-svn: 295654
Fixed layout of test/ASTMerge.As outlined in a previous RFC, the test/ASTMerge/Inputs folder is getting full and the tests are starting to become interdependent. This is undesirable because- it m
Fixed layout of test/ASTMerge.As outlined in a previous RFC, the test/ASTMerge/Inputs folder is getting full and the tests are starting to become interdependent. This is undesirable because- it makes it harder to write new tests- it makes it harder to figure out at a glance what old tests are doing, and- it adds the risk of breaking one test while changing a different one, because of the interdependencies.To fix this, according to the conversation in the RFC, I have changed the layout froma.cInputs/a1.cInputs/a2.ctoa/test.ca/Inputs/a1.ca/Inputs/a2.cfor all existing tests. I have also eliminated interdependencies by replicating the input files for each test that uses them.https://reviews.llvm.org/D26571llvm-svn: 287129