summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/modularize/ModularizeUtilities.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove \brief commands from doxygen comments.Dmitri Gribenko2019-08-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | Summary: We've been running doxygen with the autobrief option for a couple of years now. This makes the \brief markers into our comments redundant. Since they are a visual distraction and we don't want to encourage more \brief markers in new code either, this patch removes them all. Patch produced by for i in $(git grep -l '\\brief'); do perl -pi -e 's/\\brief //g' $i & done [This is analogous to LLVM r331272 and CFE r331834] Subscribers: srhines, nemanjai, javed.absar, kbarton, MaskRay, jkorous, arphaman, jfb, kadircet, jsji, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D66578 llvm-svn: 369643
* 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
* Fixes for Clang API changeDavid Blaikie2017-01-061-2/+0
| | | | llvm-svn: 291203
* Added mechanism to modularize for doing a compilation precheckJohn Thompson2015-07-101-2/+38
| | | | | | | | | | | | to determine files that have comnpilation or dependency problems. A new -display-file-lists option use this to display lists of good files (no compile errors), problem files, and a combined list with problem files preceded by a '#'. The problem files list can be used in the module map generation assistant mode to exclude problem files. The combined files list can be used during module map development. See added docs. llvm-svn: 241880
* Fixed modularize to warn about missing headers referenced in a module map.John Thompson2015-06-041-0/+2
| | | | llvm-svn: 239122
* Added module map coverage support, extracted from module-map-checker.John Thompson2015-02-191-1/+28
| | | | llvm-svn: 229869
* Pruned some unneeded code and comments.John Thompson2015-02-191-4/+2
| | | | llvm-svn: 229855
* Added support for extracting headers from module maps as a source for the ↵John Thompson2015-02-181-2/+81
| | | | | | header list. llvm-svn: 229692
* Add canonical path conversion function and use it so paths are consistent.John Thompson2015-02-171-0/+11
| | | | llvm-svn: 229540
* Moved header list loading to new class. This is staging for adding module ↵John Thompson2015-02-131-0/+74
map loading and checking support. llvm-svn: 229108
OpenPOWER on IntegriCloud