| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | install a TargetLibraryInfo configured with the appropriate | Chris Lattner | 2011-02-18 | 1 | -3/+12 | |
| | | | | | | | | target triple. This would be a decent place to add -fno-builtin info for example. llvm-svn: 125971 | |||||
| * | Implement -cl-mad-enable | Peter Collingbourne | 2010-12-04 | 1 | -0/+1 | |
| | | | | | llvm-svn: 120881 | |||||
| * | Implement -cl-unsafe-math-optimizations | Peter Collingbourne | 2010-12-04 | 1 | -0/+1 | |
| | | | | | llvm-svn: 120879 | |||||
| * | Implement -cl-finite-math-only | Peter Collingbourne | 2010-12-04 | 1 | -0/+2 | |
| | | | | | llvm-svn: 120878 | |||||
| * | IRgen: Change CodeGenPasses to be a PassManager, so it can have CallGraphSCC or | Daniel Dunbar | 2010-09-17 | 1 | -11/+5 | |
| | | | | | | | Module. Patch by Mike Gist! llvm-svn: 114171 | |||||
| * | Driver/IRgen: Add support for -momit-leaf-frame-pointer. | Daniel Dunbar | 2010-07-01 | 1 | -1/+15 | |
| | | | | | llvm-svn: 107367 | |||||
| * | Move CodeGenOptions.h *back* into Frontend. This should have been done when the | Chandler Carruth | 2010-06-15 | 1 | -1/+1 | |
| | | | | | | | dependency edge was reversed such that CodeGen depends on Frontend. llvm-svn: 106065 | |||||
| * | Break Frontend's dependency on Rewrite, Checker and CodeGen in shared ↵ | Daniel Dunbar | 2010-06-15 | 1 | -0/+325 | |
| 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 | ||||||

