| Commit message (Expand) | Author | Age | Files | Lines |
* | Lex: Don't restrict legal UCNs when preprocessing assembly | Justin Bogner | 2013-10-21 | 1 | -0/+4 |
* | Per updates to D3781, allow underscore under ' in a pp-number, and allow ' in... | Richard Smith | 2013-09-26 | 1 | -1/+1 |
* | Implement C++1y digit separator proposal (' as a digit separator). This is not | Richard Smith | 2013-09-26 | 1 | -0/+12 |
* | Avoid a signed/unsigned comparison warning with compilers that don't know how | Richard Smith | 2013-09-24 | 1 | -1/+1 |
* | Handle standard libraries that miss out the space when defining the standard | Richard Smith | 2013-09-24 | 1 | -6/+28 |
* | Fix use-after-free in r190980. | Eli Friedman | 2013-09-19 | 1 | -3/+6 |
* | Make Preprocessor::Lex non-recursive. | Eli Friedman | 2013-09-19 | 1 | -90/+163 |
* | Use new UnicodeCharSet interface. | Alexander Kornienko | 2013-08-29 | 1 | -15/+35 |
* | Fix "//" comments with -traditional-cpp in C++. | Eli Friedman | 2013-08-28 | 1 | -2/+4 |
* | Respect -Wnewline-eof even in C++11 mode. | Jordan Rose | 2013-08-23 | 1 | -4/+22 |
* | ObjectiveC migrator: More work towards | Fariborz Jahanian | 2013-08-20 | 1 | -2/+3 |
* | C++1y literal suffix support: | Richard Smith | 2013-07-23 | 1 | -6/+18 |
* | Replace Count{Leading,Trailing}Zeros_{32,64} with count{Leading,Trailing}Zeros. | Michael J. Spencer | 2013-05-24 | 1 | -1/+1 |
* | [modules] If we hit a failure while loading a PCH/module, abort parsing inste... | Argyrios Kyrtzidis | 2013-05-24 | 1 | -0/+6 |
* | [Lexer] Improve Lexer::getSourceText() when the given range deals with functi... | Argyrios Kyrtzidis | 2013-05-16 | 1 | -33/+24 |
* | Typo and misc comment fix. | Richard Smith | 2013-05-10 | 1 | -2/+4 |
* | [libclang] Make sure the preable does not truncate comments. | Argyrios Kyrtzidis | 2013-04-19 | 1 | -2/+15 |
* | Add -Wc99-compat warning for C11 unicode string and character literals. | Richard Smith | 2013-03-11 | 1 | -6/+8 |
* | When lexing in C11 mode, accept unicode character and string literals, per C11 | Richard Smith | 2013-03-09 | 1 | -9/+13 |
* | Preprocessor: don't consider // to be a line comment in -E -std=c89 mode. | Jordan Rose | 2013-03-05 | 1 | -4/+7 |
* | Preprocessor: preserve whitespace in -traditional-cpp mode. | Jordan Rose | 2013-02-21 | 1 | -17/+28 |
* | Properly validate UCNs for C99 and C++03 (both more restrictive than C(++)11). | Jordan Rose | 2013-02-09 | 1 | -89/+86 |
* | Pull Lexer's CharInfo table out for general use throughout Clang. | Jordan Rose | 2013-02-08 | 1 | -170/+5 |
* | Lexer: Don't warn about Unicode in preprocessor directives. | Jordan Rose | 2013-01-31 | 1 | -2/+4 |
* | Fix r173881 to properly skip invalid UTF-8 characters in raw lexing and -E. | Jordan Rose | 2013-01-30 | 1 | -0/+1 |
* | Move UTF conversion routines from clang/lib/Basic to llvm/lib/Support | Dmitri Gribenko | 2013-01-30 | 1 | -9/+11 |
* | Don't warn about Unicode characters in -E mode. | Jordan Rose | 2013-01-30 | 1 | -18/+20 |
* | PR15067 (again): Don't warn about UCNs in C90 if we're raw-lexing. | Jordan Rose | 2013-01-28 | 1 | -1/+2 |
* | PR15067: Don't assert when a UCN appears in a C90 file. | Jordan Rose | 2013-01-27 | 1 | -3/+6 |
* | Lexer.cpp: Fix a warning with ptrdiff_t on i686. [-Wsign-compare] | NAKAMURA Takumi | 2013-01-25 | 1 | -1/+1 |
* | Clarify comment: "diagnose" is better than "warn" when emitting an error. | Jordan Rose | 2013-01-25 | 1 | -1/+1 |
* | Add a fixit for \U1234 -> \u1234. | Jordan Rose | 2013-01-24 | 1 | -1/+9 |
* | As an extension, treat Unicode whitespace characters as whitespace. | Jordan Rose | 2013-01-24 | 1 | -0/+23 |
* | Handle universal character names and Unicode characters outside of literals. | Jordan Rose | 2013-01-24 | 1 | -13/+275 |
* | Remove useless 'llvm::' qualifier from names like StringRef and others that are | Dmitri Gribenko | 2013-01-12 | 1 | -1/+1 |
* | Pull the bulk of Lexer::MeasureTokenLength() out into a new function, | Argyrios Kyrtzidis | 2013-01-07 | 1 | -5/+15 |
* | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith | 2013-01-02 | 1 | -7/+7 |
* | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth | 2012-12-04 | 1 | -4/+4 |
* | Teach Lexer::getSpelling about raw string literals. Specifically, if a raw | Richard Smith | 2012-11-28 | 1 | -42/+67 |
* | Fix crash on end-of-file after \ in a char literal, fixes PR14369. | Nico Weber | 2012-11-17 | 1 | -6/+8 |
* | Fix an assertion failure printing the unused-label fixit in files using CRLF ... | Eli Friedman | 2012-11-14 | 1 | -1/+8 |
* | Revert r167801, "[preprocessor] When #including something that contributes no | Daniel Dunbar | 2012-11-13 | 1 | -22/+0 |
* | UCNs in char literals are done (in LiteralSupport), remove FIXME. Expand UCN ... | Nico Weber | 2012-11-13 | 1 | -2/+1 |
* | [preprocessor] When #including something that contributes no tokens at all, | Argyrios Kyrtzidis | 2012-11-13 | 1 | -0/+22 |
* | In Lexer::LexTokenInternal, avoid code duplication; no functionality change. | Argyrios Kyrtzidis | 2012-11-13 | 1 | -39/+26 |
* | s/BCPLComment/LineComment/ | Nico Weber | 2012-11-11 | 1 | -22/+22 |
* | Take into account that there may be a BOM at the beginning of the file, | Argyrios Kyrtzidis | 2012-10-25 | 1 | -3/+6 |
* | StringRef'ize Preprocessor::CreateString(). | Dmitri Gribenko | 2012-09-24 | 1 | -1/+1 |
* | Dont cast away const needlessly. Found by gcc48 -Wcast-qual. | Roman Divacky | 2012-09-06 | 1 | -1/+2 |
* | Make a bunch of methods on Lexer private. | Eli Friedman | 2012-08-31 | 1 | -1/+1 |