| Commit message (Expand) | Author | Age | Files | Lines |
| * | Make -o work with -E, patch contributed by Shantonu Sen! | Chris Lattner | 2008-01-27 | 1 | -1/+1 |
| * | add support for -Wundef. | Chris Lattner | 2008-01-23 | 1 | -1/+7 |
| * | Add Ubuntu 7.10 include path. | Lauro Ramos Venancio | 2008-01-21 | 1 | -0/+4 |
| * | Insert #pragma once when rewriting a header file. | Fariborz Jahanian | 2008-01-18 | 1 | -1/+1 |
| * | Shortened driver option for running the GR-constants analysis to --grconstants. | Ted Kremenek | 2008-01-16 | 1 | -1/+1 |
| * | Hooked up the GRConstants analysis to the driver. | Ted Kremenek | 2008-01-16 | 1 | -4/+4 |
| * | add support for the GCC -include option. | Chris Lattner | 2008-01-10 | 1 | -2/+21 |
| * | Ted apparently likes crazy whitespace at the end of line. Crush his spirit by | Chris Lattner | 2008-01-10 | 1 | -1/+1 |
| * | Added most of the boilerplate to the driver needed to run the graph-reachability | Ted Kremenek | 2008-01-08 | 1 | -0/+6 |
| * | Fix PR1897, patch by Wilhansen Li | Chris Lattner | 2008-01-04 | 1 | -0/+1 |
| * | Rename stats to print-stats to avoid conflicting with llvm's | Nate Begeman | 2007-12-30 | 1 | -1/+2 |
| * | Don't attribute in file headers anymore. See llvmdev for the | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
| * | Implement -emit-llvm-bc option | Seo Sanghyeon | 2007-12-24 | 1 | -1/+7 |
| * | Converted uses of scoped_ptr to OwningPtr. | Ted Kremenek | 2007-12-20 | 1 | -3/+3 |
| * | Added methods createMainFileID() and createMainFileIDForMemBuffer() to | Ted Kremenek | 2007-12-19 | 1 | -16/+8 |
| * | Interned MainFileID within SourceManager. Since SourceManager is referenced by | Ted Kremenek | 2007-12-19 | 1 | -12/+10 |
| * | Typo fix. | Ted Kremenek | 2007-12-19 | 1 | -3/+2 |
| * | Added storage of the FileID of the the main source file of a translation unit | Ted Kremenek | 2007-12-19 | 1 | -1/+4 |
| * | Removed "SourceFile" from TranslationUnit. This same information will (soon) | Ted Kremenek | 2007-12-19 | 1 | -8/+9 |
| * | Cleaned up "-o" option to print "-o=<path>" instead of "-o=<string>" when | Ted Kremenek | 2007-12-19 | 1 | -0/+1 |
| * | Added "-o" option to driver. ASTConsumers will need to be gradually | Ted Kremenek | 2007-12-19 | 1 | -1/+6 |
| * | Removed storing inode and device number in TranslationUnit. | Ted Kremenek | 2007-12-19 | 1 | -12/+14 |
| * | Moved generation of the name of the serialized AST file into | Ted Kremenek | 2007-12-19 | 1 | -14/+2 |
| * | Moved ReadBitcodeFile and EmitBitcodeFile out of TranslationUnit and made them | Ted Kremenek | 2007-12-18 | 1 | -1/+1 |
| * | Moved TranslationUnit from Driver to AST library. | Ted Kremenek | 2007-12-18 | 1 | -1/+1 |
| * | Start reading the headermap header, drop the 'errorstr' argument to | Chris Lattner | 2007-12-17 | 1 | -10/+2 |
| * | Sink getName into DirectoryLookup to simplify the client in clang. | Chris Lattner | 2007-12-17 | 1 | -5/+6 |
| * | Fixed 80 col violation. | Ted Kremenek | 2007-12-17 | 1 | -1/+2 |
| * | Added driver option -Wno-format-nonliteral to silence format string related | Ted Kremenek | 2007-12-17 | 1 | -0/+9 |
| * | Unbreak -v with framework paths. Patch by Shantonu Sen. | Chris Lattner | 2007-12-17 | 1 | -5/+10 |
| * | as it turns out, frameworks and headermaps are orthogonal. Make this so in | Chris Lattner | 2007-12-17 | 1 | -16/+28 |
| * | add a portability fixme. | Chris Lattner | 2007-12-17 | 1 | -0/+2 |
| * | teach RemoveDuplicates about header maps. | Chris Lattner | 2007-12-17 | 1 | -4/+19 |
| * | Step #1 in adding headermap support to clang. | Chris Lattner | 2007-12-17 | 1 | -21/+42 |
| * | rearrange some code and make it more efficient. | Chris Lattner | 2007-12-17 | 1 | -17/+23 |
| * | swtich to smallptrset, which is more efficient than std::set. | Chris Lattner | 2007-12-15 | 1 | -2/+4 |
| * | make clang -v output more similar to gcc's -v output. | Chris Lattner | 2007-12-15 | 1 | -1/+5 |
| * | simplify the interfaces to ProcessInputFile and InitializePreprocessor | Chris Lattner | 2007-12-15 | 1 | -20/+11 |
| * | Add check in the driver to see if a serialized AST file has been successfully | Ted Kremenek | 2007-12-13 | 1 | -1/+8 |
| * | Changed -serialize-ast to not create a temporary directory, but instead | Ted Kremenek | 2007-12-13 | 1 | -7/+8 |
| * | Implemented -serialize-ast option for the driver. This is not really tested | Ted Kremenek | 2007-12-13 | 1 | -3/+24 |
| * | Implemented prototype mode where the driver can operate on serialized ASTs | Ted Kremenek | 2007-12-12 | 1 | -50/+100 |
| * | TargetInfo no longer includes a reference to SourceManager. | Ted Kremenek | 2007-12-12 | 1 | -2/+1 |
| * | Moved construction of TargetInfo objects out of the Driver | Ted Kremenek | 2007-12-12 | 1 | -1/+4 |
| * | Simplify some code, don't force the triple to a darwin triple if non-darwin. | Chris Lattner | 2007-12-12 | 1 | -21/+10 |
| * | Moved creation of SourceManager, HeaderSearch, TargetInfo, and LangOptions | Ted Kremenek | 2007-12-11 | 1 | -42/+45 |
| * | Modified the internals of Diagnostic and DiagnosticClient to use | Ted Kremenek | 2007-12-11 | 1 | -3/+1 |
| * | Mega-patch: ripped SourceManager out of Diagnostic/DiagnosticClient. Now | Ted Kremenek | 2007-12-11 | 1 | -4/+6 |
| * | avoid ///usr/include/foo.h, patch by Sean Middleditch | Chris Lattner | 2007-12-09 | 1 | -3/+10 |
| * | Subdivided the function InitializeBaseLanguage into InitializeBaseLanguage, | Ted Kremenek | 2007-12-05 | 1 | -43/+51 |