| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | remove unneeded llvm:: namespace qualifiers on some core types now that ↵ | Chris Lattner | 2011-07-23 | 1 | -8/+8 |
| | | | | | | | | | LLVM.h imports them into the clang namespace. llvm-svn: 135852 | ||||
| * | Replace all uses of PathV1::get{Basename,Dirname,Suffix} with their PathV2 ↵ | Michael J. Spencer | 2010-12-18 | 1 | -5/+4 |
| | | | | | | | equivalents. llvm-svn: 122140 | ||||
| * | Merge System into Support. | Michael J. Spencer | 2010-11-29 | 1 | -1/+1 |
| | | | | | llvm-svn: 120297 | ||||
| * | More class anonymization. | Benjamin Kramer | 2010-10-22 | 1 | -0/+2 |
| | | | | | llvm-svn: 117106 | ||||
| * | Make the FixItOptions object required instead of optional. | Nick Lewycky | 2010-08-15 | 1 | -1/+7 |
| | | | | | llvm-svn: 111105 | ||||
| * | Add a new cc1 option -fix-what-you-can which when combined with the fix-it mode | Nick Lewycky | 2010-08-13 | 1 | -6/+9 |
| | | | | | | | will apply all fixes even when there were other errors in the file. llvm-svn: 111020 | ||||
| * | Break Frontend's dependency on Rewrite, Checker and CodeGen in shared ↵ | Daniel Dunbar | 2010-06-15 | 1 | -0/+106 |
| library configuration Currently, all AST consumers are located in the Frontend library, meaning that in a shared library configuration, Frontend has a dependency on Rewrite, Checker and CodeGen. This is suboptimal for clients which only wish to make use of the frontend. CodeGen in particular introduces a large number of unwanted dependencies. This patch breaks the dependency by moving all AST consumers with dependencies on Rewrite, Checker and/or CodeGen to their respective libraries. The patch therefore introduces dependencies in the other direction (i.e. from Rewrite, Checker and CodeGen to Frontend). After applying this patch, Clang builds correctly using CMake and shared libraries ("cmake -DBUILD_SHARED_LIBS=ON"). N.B. This patch includes file renames which are indicated in the patch body. Changes in this revision of the patch: - Fixed some copy-paste mistakes in the header files - Modified certain aspects of the coding to comply with the LLVM Coding Standards llvm-svn: 106010 | |||||

