Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | CMake: LLVM_NO_RTTI must be obsolete now! | NAKAMURA Takumi | 2011-02-10 | 1 | -2/+0 | |
| | | | | llvm-svn: 125275 | |||||
* | make `make` work in examples/PrintFucntionNames on Mac. I checked that it ↵ | Nico Weber | 2011-01-26 | 2 | -5/+11 | |
| | | | | | | still works on Linux. llvm-svn: 124325 | |||||
* | Fix name to match reality. | Nick Lewycky | 2011-01-19 | 1 | -1/+1 | |
| | | | | llvm-svn: 123813 | |||||
* | Chris Lattner has strong opinions about directory | Ted Kremenek | 2010-12-23 | 1 | -2/+2 | |
| | | | | | | | | | | | | layout. :) Rename the 'EntoSA' directories to 'StaticAnalyzer'. Internally we will still use the 'ento' namespace for the analyzer engine (unless there are further sabre rattlings...). llvm-svn: 122514 | |||||
* | Rename headers: 'clang/GR' 'clang/EntoSA' and | Ted Kremenek | 2010-12-23 | 1 | -2/+2 | |
| | | | | | | update Makefile. llvm-svn: 122493 | |||||
* | [analyzer] Refactoring: Move checkers into lib/GR/Checkers and their own ↵ | Argyrios Kyrtzidis | 2010-12-22 | 1 | -0/+1 | |
| | | | | | | library, libclangGRCheckers llvm-svn: 122422 | |||||
* | [analyzer] Refactoring: lib/Checker -> lib/GR and libclangChecker -> ↵ | Argyrios Kyrtzidis | 2010-12-22 | 1 | -1/+1 | |
| | | | | | | libclangGRCore llvm-svn: 122421 | |||||
* | PrintFunctionNames: Fix Windows (MSV{S,C} and mingw) build. | Michael J. Spencer | 2010-09-14 | 1 | -0/+28 | |
| | | | | llvm-svn: 113835 | |||||
* | Revert "CMake: Update to use standard CMake dependency tracking facilities ↵ | Michael J. Spencer | 2010-09-13 | 1 | -10/+1 | |
| | | | | | | | | | | | | | instead" This reverts commit r113631 Conflicts: CMakeLists.txt lib/CodeGen/CMakeLists.txt llvm-svn: 113817 | |||||
* | CMake: Update to use standard CMake dependency tracking facilities instead | Michael J. Spencer | 2010-09-10 | 1 | -1/+10 | |
| | | | | | | of whatever we were using before... llvm-svn: 113631 | |||||
* | Frontend: Change PluginASTAction::ParseArgs to take a CompilerInstance object | Daniel Dunbar | 2010-08-02 | 1 | -4/+16 | |
| | | | | | | | | | | | | for use in reporting diagnostics. - We don't want to use the Action's own CompilerInstance, because that is only initialized during file processing and I like that invariant. Also, if ParseArgs returns false then abandon execution. Also, remove unused PluginASTAction::PrintHelp virtual method. llvm-svn: 110039 | |||||
* | Make a variable static. | Dan Gohman | 2010-07-26 | 1 | -1/+1 | |
| | | | | llvm-svn: 109438 | |||||
* | Use an export file. Plugins must export llvm::Registry symbols. | Dan Gohman | 2010-07-26 | 2 | -3/+9 | |
| | | | | | | Also, don't link in all the clang libraries statically. llvm-svn: 109436 | |||||
* | PrintFunctionNames is a plugin, it should pull in symbols from the clang binary | Nick Lewycky | 2010-07-10 | 1 | -1/+0 | |
| | | | | | | that loads it, not by linking against them directly. llvm-svn: 108055 | |||||
* | Frontend: Allow passing -cc1 level arguments to plugins. Patch by Troy ↵ | Daniel Dunbar | 2010-06-16 | 1 | -1/+14 | |
| | | | | | | Straszheim! llvm-svn: 106113 | |||||
* | Makefiles: Remove unnecessary early include of Makefile.config. | Daniel Dunbar | 2010-06-08 | 1 | -5/+0 | |
| | | | | llvm-svn: 105640 | |||||
* | Makefiles: Set Clang CPP compiler flags in a single location, instead of ↵ | Daniel Dunbar | 2010-06-08 | 1 | -2/+0 | |
| | | | | | | scattered throughout the project Makefiles. llvm-svn: 105638 | |||||
* | Makefile: Switch Clang Makefiles to always include the top-level Clang Makefile. | Daniel Dunbar | 2010-06-08 | 1 | -3/+3 | |
| | | | | | | - This eliminates most dependencies on how Clang is installed relative to LLVM. llvm-svn: 105637 | |||||
* | Teach the PrintFunctionNames example to be a proper module, so that | Douglas Gregor | 2010-06-08 | 1 | -19/+3 | |
| | | | | | | | Clang can load it as a plugin. Original fix by Troy D. Straszheim, which I extended with Darwin support. Fixes PR6801. llvm-svn: 105630 | |||||
* | -fno-rtti is now the default. | Chris Lattner | 2010-01-24 | 1 | -1/+0 | |
| | | | | llvm-svn: 94379 | |||||
* | Fix -plugin command line argument syntax for clang -cc1 change. | Daniel Dunbar | 2010-01-05 | 1 | -1/+1 | |
| | | | | llvm-svn: 92780 | |||||
* | Update docs/comments/utils/examples to refer to clang -cc1 instead of clang-cc. | Daniel Dunbar | 2009-12-11 | 2 | -4/+4 | |
| | | | | llvm-svn: 91176 | |||||
* | Update example link lines. | Daniel Dunbar | 2009-12-03 | 2 | -5/+15 | |
| | | | | llvm-svn: 90359 | |||||
* | Add a very minimal README.txt for examples/PrintFunctionNames. | Daniel Dunbar | 2009-12-01 | 1 | -0/+10 | |
| | | | | llvm-svn: 90197 | |||||
* | Add a trivial example plugin, which prints the names of the top-level decls. | Daniel Dunbar | 2009-11-15 | 3 | -0/+88 | |
- The build scriptage is about twice as long as the code, which is nice. :) llvm-svn: 88826 |