| Commit message (Expand) | Author | Age | Files | Lines |
| * | Unify diagnostics for \x, \u, and \U without any following hex digits. | Jordan Rose | 2013-01-24 | 1 | -2/+2 |
| * | Adopt llvm::hexDigitValue. | Jordan Rose | 2013-01-18 | 1 | -13/+4 |
| * | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith | 2013-01-02 | 1 | -2/+2 |
| * | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth | 2012-12-04 | 1 | -3/+3 |
| * | LiteralSupport: Don't overflow the temporary buffer when decoding invalid str... | Benjamin Kramer | 2012-11-08 | 1 | -5/+6 |
| * | LiteralSupport: Clean up style violations. No functionality change. | Benjamin Kramer | 2012-11-08 | 1 | -15/+15 |
| * | Handle string encoding diagnostics when there are too many invalid ranges. | David Blaikie | 2012-10-30 | 1 | -1/+2 |
| * | improve highlighting of invalid string encodings | Seth Cantrell | 2012-10-28 | 1 | -11/+49 |
| * | Rename CanFitInto64Bits to alwaysFitsInto64Bits per discussion on IRC. | Jordan Rose | 2012-09-25 | 1 | -2/+2 |
| * | Optimize NumericLiteralParser::GetIntegerValue(). | Dmitri Gribenko | 2012-09-25 | 1 | -9/+21 |
| * | Small cleanup of literal semantic analysis: hiding 'char *' pointers behind | Dmitri Gribenko | 2012-09-24 | 1 | -11/+11 |
| * | When a bad UTF-8 encoding or bogus escape sequence is encountered in a | Richard Smith | 2012-09-08 | 1 | -60/+101 |
| * | Share ConvertUTF8toWide() between Lex and CodeGen. | Nico Weber | 2012-07-03 | 1 | -36/+1 |
| * | Documentation cleanup: add \verbatim markup for grammar productions | James Dennett | 2012-06-19 | 1 | -1/+2 |
| * | Documentation cleanup: added \verbatim...\verbatim markup to fix the | James Dennett | 2012-06-17 | 1 | -0/+2 |
| * | Fix off-by-one error in UTF-16 encoding: don't try to use a surrogate pair fo... | Richard Smith | 2012-06-13 | 1 | -1/+1 |
| * | PR13099: Teach -Wformat about raw string literals, UTF-8 strings and Unicode ... | Richard Smith | 2012-06-13 | 1 | -9/+71 |
| * | In StringLiteralParser::init, make sure we emit an error when | Argyrios Kyrtzidis | 2012-05-03 | 1 | -14/+13 |
| * | In StringLiteralParser::init(), fail gracefully if the string is | Argyrios Kyrtzidis | 2012-05-03 | 1 | -1/+6 |
| * | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 2012-03-11 | 1 | -6/+6 |
| * | Improve diagnostics for UCNs referring to control characters and members of the | Richard Smith | 2012-03-09 | 1 | -24/+41 |
| * | When checking the encoding of an 8-bit string literal, don't just check the | Richard Smith | 2012-03-08 | 1 | -13/+8 |
| * | Add support for cooked forms of user-defined-integer-literal and | Richard Smith | 2012-03-08 | 1 | -3/+15 |
| * | User-defined literal support for character literals. | Richard Smith | 2012-03-08 | 1 | -0/+3 |
| * | Lexing support for user-defined literals. Currently these lex as the same token | Richard Smith | 2012-03-05 | 1 | -5/+52 |
| * | Implement warning for non-wide string literals with an unexpected encoding. ... | Eli Friedman | 2012-02-11 | 1 | -15/+40 |
| * | Fixing hex floating literal support so that it handles 0x.2p2 properly. | Aaron Ballman | 2012-02-08 | 1 | -6/+11 |
| * | Hex literals without a significand no longer crash the lexer. Fixes bug 7910 | Aaron Ballman | 2012-02-07 | 1 | -0/+6 |
| * | Basic: import SmallString<> into clang namespace | Dylan Noblesmith | 2012-02-05 | 1 | -2/+2 |
| * | stop claiming unicode escape sequences are too long in strings, because they ... | Seth Cantrell | 2012-01-18 | 1 | -2/+0 |
| * | Improves support for Unicode in character literals | Seth Cantrell | 2012-01-18 | 1 | -64/+115 |
| * | Fix a regression in wide character codegen. See PR11369. | Nico Weber | 2011-11-14 | 1 | -2/+2 |
| * | Fix one last place where we weren't writing into a string literal consistently. | Eli Friedman | 2011-11-05 | 1 | -2/+14 |
| * | Use native endianness for writing out character escapes to the result buffer ... | Eli Friedman | 2011-11-02 | 1 | -20/+32 |
| * | Perform proper conversion for strings encoded in the source file as UTF-8. (... | Eli Friedman | 2011-11-01 | 1 | -11/+44 |
| * | We do parse hexfloats in C++11; make it actually work. | Douglas Gregor | 2011-10-12 | 1 | -3/+0 |
| * | When parsing a character literal, extract the characters from the | Douglas Gregor | 2011-09-27 | 1 | -1/+1 |
| * | Rename Diagnostic to DiagnosticsEngine as per issue 5397 | David Blaikie | 2011-09-25 | 1 | -3/+4 |
| * | Fix missing includes for llvm_unreachable | David Blaikie | 2011-09-23 | 1 | -0/+1 |
| * | Switch assert(0/false) llvm_unreachable. | David Blaikie | 2011-09-23 | 1 | -1/+1 |
| * | Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t... | Francois Pichet | 2011-09-17 | 1 | -1/+1 |
| * | Allow C99 hexfloats in C++0x mode. This change resolves the standards | Douglas Gregor | 2011-08-30 | 1 | -4/+2 |
| * | Warn about and truncate UCNs that are too big for their character literal type. | Craig Topper | 2011-08-19 | 1 | -5/+5 |
| * | De-Unicode-ify. | NAKAMURA Takumi | 2011-08-12 | 1 | -2/+2 |
| * | Raw string followup. Pass a couple StringRefs by value. | Craig Topper | 2011-08-11 | 1 | -1/+1 |
| * | Add support for C++0x raw string literals. | Craig Topper | 2011-08-11 | 1 | -74/+148 |
| * | Fix comment (test commit) | Craig Topper | 2011-08-08 | 1 | -1/+1 |
| * | Add support for C++0x unicode string and character literals, from Craig Topper! | Douglas Gregor | 2011-07-27 | 1 | -64/+93 |
| * | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -6/+4 |
| * | Fix a nasty bug where inside StringLiteralParser: | Argyrios Kyrtzidis | 2011-05-17 | 1 | -1/+18 |