Age | Commit message (Expand) | Author |
2011-02-28 | Rename tok::eom to tok::eod. | Peter Collingbourne |
2011-02-22 | Reimplement __pragma support using a TokenLexer | Peter Collingbourne |
2011-02-22 | Make TokenLexer capable of storing preprocessor directive tokens | Peter Collingbourne |
2011-02-20 | Turn on __has_feature(cxx_auto_type). The feature is now fully implemented. | Richard Smith |
2011-02-15 | Warn for missing terminating " or ' instead of error for gcc compatibility. F... | Argyrios Kyrtzidis |
2011-02-14 | Move support for "#pragma STDC FP_CONTRACT" to Parser; add Sema actions | Peter Collingbourne |
2011-02-14 | Make LexOnOffSwitch a Preprocessor member function | Peter Collingbourne |
2011-02-11 | Add CMake dependencies so that LLVM_USED_LIBS order doesn't matter. | Jeffrey Yasskin |
2011-02-10 | Implement two related optimizations that make de-serialization of | Douglas Gregor |
2011-02-10 | CMake: LLVM_NO_RTTI must be obsolete now! | NAKAMURA Takumi |
2011-02-09 | Lexer: add CUDA kernel call tokens | Peter Collingbourne |
2011-02-05 | Add a __has_feature check for default template arguments in function | Douglas Gregor |
2011-02-03 | Add __has_feature() for each of the type traits | Douglas Gregor |
2011-01-31 | Harden Lexer::GetBeginningOfToken() against bogus source locations and | Douglas Gregor |
2011-01-27 | Wire up attributes 'ns_consumed' and 'cf_consumed' in the static analyzer's O... | Ted Kremenek |
2011-01-27 | Hook up attribute ns_consumes_self in the ObjC retain/release checker in the ... | Ted Kremenek |
2011-01-26 | Add __has_feature(cxx_reference_qualified_functions); update tests and | Douglas Gregor |
2011-01-26 | Clean up the C++0x __has_feature tests. Specifically: | Douglas Gregor |
2011-01-25 | Downgrade the error about rvalue references to an extension warning | Douglas Gregor |
2011-01-19 | Eradicate any mention of C++0x concepts. | Douglas Gregor |
2011-01-19 | Variadic templates are fully implemented. | Douglas Gregor |
2011-01-18 | When redefining a macro don't warn twice if it's not used and don't warn for ... | Argyrios Kyrtzidis |
2011-01-15 | clean up some dead code around __has_include() processing code identified by ... | Chris Lattner |
2011-01-11 | Microsoft integer suffix changes: | Francois Pichet |
2011-01-10 | Replace all uses of PathV1::exists with PathV2::fs::exists. | Michael J. Spencer |
2011-01-06 | fix rdar://8823139, a crash on a comment in a preprocessed .s file | Chris Lattner |
2011-01-03 | Fix PR8654, ensuring each branch of an #if, #elif, #else, ... chain | Chandler Carruth |
2010-12-23 | Change all self assignments X=X to (void)X, so that we can turn on a | Jeffrey Yasskin |
2010-12-22 | Introduced raw_identifier token kind. | Abramo Bagnara |
2010-12-19 | Add missing standard includes. Patch by Joerg Sonnenberger! | Nick Lewycky |
2010-12-17 | Replace all uses of PathV1::isAbsolute with PathV2::is_{absolute,relative}. | Michael J. Spencer |
2010-12-16 | MemoryBuffer API update. | Michael J. Spencer |
2010-12-15 | Fix diagnostic pragmas. | Argyrios Kyrtzidis |
2010-12-09 | Don't crash when code-completing after "#include <". It would be far | Douglas Gregor |
2010-12-09 | Use error_code instead of std::string* for MemoryBuffer. | Michael J. Spencer |
2010-12-03 | Fix diagnostic for reporting bad escape sequence. | Ted Kremenek |
2010-11-29 | Merge System into Support. | Michael J. Spencer |
2010-11-23 | change the 'is directory' indicator to be a null-or-not | Chris Lattner |
2010-11-23 | simplify the cache miss handling code, eliminating CacheMissing. | Chris Lattner |
2010-11-23 | rework the stat cache, pulling it out of FileManager.h into | Chris Lattner |
2010-11-23 | don't allow remapping PTH file paths with -fworking-directory, the | Chris Lattner |
2010-11-23 | now the FileManager has a FileSystemOpts ivar, stop threading | Chris Lattner |
2010-11-23 | tidy up | Chris Lattner |
2010-11-21 | remove old compatibility APIs, use StringRef versions instead. | Chris Lattner |
2010-11-20 | Revert r119838 "Don't warn for empty 'if' body if there is a macro that expan... | Argyrios Kyrtzidis |
2010-11-19 | Several PPCallbacks take an SourceLocation + IdentifierInfo, rather | Craig Silverstein |
2010-11-19 | Don't warn for empty 'if' body if there is a macro that expands to nothing, e.g: | Argyrios Kyrtzidis |
2010-11-17 | move getSpelling from Preprocessor to Lexer, which it is more conceptually re... | Chris Lattner |
2010-11-17 | propagate preprocessor out of StringLiteralParser. It is now | Chris Lattner |
2010-11-17 | push the preprocessor out of EncodeUCNEscape | Chris Lattner |