Age | Commit message (Expand) | Author | Files | Lines |
2012-11-28 | Teach Lexer::getSpelling about raw string literals. Specifically, if a raw | Richard Smith | 1 | -42/+67 |
2012-11-17 | Fix crash on end-of-file after \ in a char literal, fixes PR14369. | Nico Weber | 1 | -6/+8 |
2012-11-14 | Fix an assertion failure printing the unused-label fixit in files using CRLF ... | Eli Friedman | 1 | -1/+8 |
2012-11-13 | Revert r167801, "[preprocessor] When #including something that contributes no | Daniel Dunbar | 1 | -22/+0 |
2012-11-13 | UCNs in char literals are done (in LiteralSupport), remove FIXME. Expand UCN ... | Nico Weber | 1 | -2/+1 |
2012-11-13 | [preprocessor] When #including something that contributes no tokens at all, | Argyrios Kyrtzidis | 1 | -0/+22 |
2012-11-13 | In Lexer::LexTokenInternal, avoid code duplication; no functionality change. | Argyrios Kyrtzidis | 1 | -39/+26 |
2012-11-11 | s/BCPLComment/LineComment/ | Nico Weber | 1 | -22/+22 |
2012-10-25 | Take into account that there may be a BOM at the beginning of the file, | Argyrios Kyrtzidis | 1 | -3/+6 |
2012-09-24 | StringRef'ize Preprocessor::CreateString(). | Dmitri Gribenko | 1 | -1/+1 |
2012-09-06 | Dont cast away const needlessly. Found by gcc48 -Wcast-qual. | Roman Divacky | 1 | -1/+2 |
2012-08-31 | Make a bunch of methods on Lexer private. | Eli Friedman | 1 | -1/+1 |
2012-07-30 | Lexer: remove dead stores. Found by Clang static analyzer! | Dmitri Gribenko | 1 | -5/+2 |
2012-06-28 | Add warning flag -Winvalid-pp-token for preprocessing-tokens which have | Richard Smith | 1 | -3/+3 |
2012-06-17 | Documentation cleanup: | James Dennett | 1 | -11/+7 |
2012-06-15 | [-E] Emit a rewritten _Pragma on its own line. | Jordan Rose | 1 | -1/+1 |
2012-06-15 | Documentation cleanup: escape backslashes in Doxygen comments. | James Dennett | 1 | -4/+5 |
2012-06-15 | PR12717: Clang supports hexadecimal floating-point literals in all language | Richard Smith | 1 | -2/+14 |
2012-06-15 | Fix PR13065. | David Blaikie | 1 | -1/+1 |
2012-06-08 | Correct method name in comment: from LexRawToken to LexFromRawLexer, according | Dmitri Gribenko | 1 | -2/+2 |
2012-06-07 | Insert a space if necessary when suggesting CFBridgingRetain/Release. | Jordan Rose | 1 | -0/+5 |
2012-06-06 | Add a -rewrite-includes option, which is similar to -rewrite-macros, but only... | David Blaikie | 1 | -2/+3 |
2012-06-06 | Escape \n and \r in doxycomment. | David Blaikie | 1 | -2/+2 |
2012-05-18 | Lexer::ReadToEndOfLine: Only build the string if it's actually used and do so... | Benjamin Kramer | 1 | -7/+8 |
2012-04-13 | Support -Wc++98-compat-pedantic as requested: | Seth Cantrell | 1 | -4/+4 |
2012-04-13 | C++11 no longer requires files to end with a newline | Seth Cantrell | 1 | -1/+2 |
2012-04-07 | ext_reserved_user_defined_literal must not default to Error in MicrosoftMode.... | Francois Pichet | 1 | -1/+3 |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 1 | -60/+60 |
2012-03-08 | Implement C++11 [lex.ext]p10 for string and character literals: a ud-suffix not | Richard Smith | 1 | -1/+14 |
2012-03-07 | Add -Wc++11-compat warning for string and character literals followed by | Richard Smith | 1 | -5/+12 |
2012-03-06 | User-defined literals: reject string and character UDLs in all places where the | Richard Smith | 1 | -0/+1 |
2012-03-05 | Lexing support for user-defined literals. Currently these lex as the same token | Richard Smith | 1 | -1/+36 |
2012-02-03 | Change Lexer::makeFileCharRange() to have it accept a CharSourceRange | Argyrios Kyrtzidis | 1 | -24/+35 |
2012-01-23 | Improve Lexer::getImmediateMacroName to take into account inner macros | Argyrios Kyrtzidis | 1 | -3/+29 |
2012-01-20 | Enhance Lexer::makeFileCharRange to check for ranges inside a macro argument | Argyrios Kyrtzidis | 1 | -11/+61 |
2012-01-19 | Introduce Lexer::getSourceText() that returns a string for the source | Argyrios Kyrtzidis | 1 | -0/+42 |
2012-01-19 | Introduce Lexer::makeFileCharRange() that accepts a token source range | Argyrios Kyrtzidis | 1 | -0/+29 |
2012-01-19 | For Lexer's isAt[Start/End]OfMacroExpansion add an out parameter for the macro | Argyrios Kyrtzidis | 1 | -15/+21 |
2012-01-18 | Refactor: Pull getImmediateMacroName() out of DiagnosticRenderer and | Anna Zaks | 1 | -0/+21 |
2012-01-15 | Two variables had been added for an assert, but their values were | Chandler Carruth | 1 | -3/+3 |
2011-12-22 | In Lexer::getCharAndSizeSlow[NoWarn] if we come up against | Argyrios Kyrtzidis | 1 | -12/+10 |
2011-12-21 | In Lexer::getCharAndSizeSlow[NoWarn] make sure we don't go over the end of th... | Argyrios Kyrtzidis | 1 | -0/+7 |
2011-12-20 | Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_... | David Blaikie | 1 | -0/+2 |
2011-11-22 | Remove assert from hot code path and add a clarifying comment. | Benjamin Kramer | 1 | -4/+4 |
2011-11-22 | Lexer: Don't throw away the hard work SSE did to find a slash. | Benjamin Kramer | 1 | -5/+12 |
2011-10-17 | Move about 20 random diagnostics under -W flags. Patch by Ahmed Charles! | Ted Kremenek | 1 | -2/+2 |
2011-10-15 | -Wc++98-compat warnings for the lexer. | Richard Smith | 1 | -0/+15 |
2011-10-12 | We do parse hexfloats in C++11; make it actually work. | Douglas Gregor | 1 | -2/+1 |
2011-10-12 | Handle Perforce-style conflict markers like normal conflict markers. Perforce | Richard Smith | 1 | -24/+38 |
2011-10-03 | Fixed exapnsion range for # and ##. | Abramo Bagnara | 1 | -1/+1 |