summaryrefslogtreecommitdiffstats
path: root/clang/utils/TableGen/ClangOptionDocEmitter.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Use scope qualifiers in Clang's tblgen backends to get usefulJohn McCall2019-10-011-7/+2
| | | | | | redeclaration checking. NFC. llvm-svn: 373406
* Update the file headers across all of the LLVM projects in the monorepoChandler Carruth2019-01-191-4/+3
| | | | | | | | | | | | | | | | | to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
* llvm::sort(C.begin(), C.end(), ...) -> llvm::sort(C, ...)Fangrui Song2018-09-261-3/+3
| | | | | | | | | | | | | | Summary: The convenience wrapper in STLExtras is available since rL342102. Reviewers: rsmith, #clang, dblaikie Reviewed By: rsmith, #clang Subscribers: mgrang, arphaman, kadircet, cfe-commits Differential Revision: https://reviews.llvm.org/D52576 llvm-svn: 343147
* [clang] Change std::sort to llvm::sort in response to r327219Mandeep Singh Grang2018-03-271-3/+3
| | | | | | | | | | | r327219 added wrappers to std::sort which randomly shuffle the container before sorting. This will help in uncovering non-determinism caused due to undefined sorting order of objects having the same key. To make use of that infrastructure we need to invoke llvm::sort instead of std::sort. llvm-svn: 328636
* [docs] Fix duplicate arguments for JoinedAndSeparateJonas Hahnfeld2018-02-221-7/+15
| | | | | | | | | We can't see how many arguments are in the meta var name, so just assume that it is the right number. Differential Revision: https://reviews.llvm.org/D42840 llvm-svn: 325805
* [TableGen] Clang changes to support Record::getValueAsString and ↵Craig Topper2017-05-311-6/+7
| | | | | | | | | | getValueAsListOfStrings returning StringRef instead of std::string This is the clang version of D33710. Differential Revision: https://reviews.llvm.org/D33711 llvm-svn: 304326
* Improve workaround for Sphinx's lack of support for command line options ↵Richard Smith2017-01-271-14/+47
| | | | | | containing '+', '.' etc. to be more stable as the set of options changes. llvm-svn: 293252
* [docs] Add TableGen-based generator for command line argument documentation,Richard Smith2017-01-241-0/+358
and generate documentation for all (non-hidden) options supported by the 'clang' driver. llvm-svn: 292968
OpenPOWER on IntegriCloud