Age | Commit message (Expand) | Author |
2013-04-19 | [libclang] Make sure the preable does not truncate comments. | Argyrios Kyrtzidis |
2013-03-11 | Add -Wc99-compat warning for C11 unicode string and character literals. | Richard Smith |
2013-03-09 | When lexing in C11 mode, accept unicode character and string literals, per C11 | Richard Smith |
2013-03-05 | Preprocessor: don't consider // to be a line comment in -E -std=c89 mode. | Jordan Rose |
2013-02-21 | Preprocessor: preserve whitespace in -traditional-cpp mode. | Jordan Rose |
2013-02-09 | Properly validate UCNs for C99 and C++03 (both more restrictive than C(++)11). | Jordan Rose |
2013-02-08 | Pull Lexer's CharInfo table out for general use throughout Clang. | Jordan Rose |
2013-01-31 | Lexer: Don't warn about Unicode in preprocessor directives. | Jordan Rose |
2013-01-30 | Fix r173881 to properly skip invalid UTF-8 characters in raw lexing and -E. | Jordan Rose |
2013-01-30 | Move UTF conversion routines from clang/lib/Basic to llvm/lib/Support | Dmitri Gribenko |
2013-01-30 | Don't warn about Unicode characters in -E mode. | Jordan Rose |
2013-01-28 | PR15067 (again): Don't warn about UCNs in C90 if we're raw-lexing. | Jordan Rose |
2013-01-27 | PR15067: Don't assert when a UCN appears in a C90 file. | Jordan Rose |
2013-01-25 | Lexer.cpp: Fix a warning with ptrdiff_t on i686. [-Wsign-compare] | NAKAMURA Takumi |
2013-01-25 | Clarify comment: "diagnose" is better than "warn" when emitting an error. | Jordan Rose |
2013-01-24 | Add a fixit for \U1234 -> \u1234. | Jordan Rose |
2013-01-24 | As an extension, treat Unicode whitespace characters as whitespace. | Jordan Rose |
2013-01-24 | Handle universal character names and Unicode characters outside of literals. | Jordan Rose |
2013-01-12 | Remove useless 'llvm::' qualifier from names like StringRef and others that are | Dmitri Gribenko |
2013-01-07 | Pull the bulk of Lexer::MeasureTokenLength() out into a new function, | Argyrios Kyrtzidis |
2013-01-02 | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith |
2012-12-04 | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth |
2012-11-28 | Teach Lexer::getSpelling about raw string literals. Specifically, if a raw | Richard Smith |
2012-11-17 | Fix crash on end-of-file after \ in a char literal, fixes PR14369. | Nico Weber |
2012-11-14 | Fix an assertion failure printing the unused-label fixit in files using CRLF ... | Eli Friedman |
2012-11-13 | Revert r167801, "[preprocessor] When #including something that contributes no | Daniel Dunbar |
2012-11-13 | UCNs in char literals are done (in LiteralSupport), remove FIXME. Expand UCN ... | Nico Weber |
2012-11-13 | [preprocessor] When #including something that contributes no tokens at all, | Argyrios Kyrtzidis |
2012-11-13 | In Lexer::LexTokenInternal, avoid code duplication; no functionality change. | Argyrios Kyrtzidis |
2012-11-11 | s/BCPLComment/LineComment/ | Nico Weber |
2012-10-25 | Take into account that there may be a BOM at the beginning of the file, | Argyrios Kyrtzidis |
2012-09-24 | StringRef'ize Preprocessor::CreateString(). | Dmitri Gribenko |
2012-09-06 | Dont cast away const needlessly. Found by gcc48 -Wcast-qual. | Roman Divacky |
2012-08-31 | Make a bunch of methods on Lexer private. | Eli Friedman |
2012-07-30 | Lexer: remove dead stores. Found by Clang static analyzer! | Dmitri Gribenko |
2012-06-28 | Add warning flag -Winvalid-pp-token for preprocessing-tokens which have | Richard Smith |
2012-06-17 | Documentation cleanup: | James Dennett |
2012-06-15 | [-E] Emit a rewritten _Pragma on its own line. | Jordan Rose |
2012-06-15 | Documentation cleanup: escape backslashes in Doxygen comments. | James Dennett |
2012-06-15 | PR12717: Clang supports hexadecimal floating-point literals in all language | Richard Smith |
2012-06-15 | Fix PR13065. | David Blaikie |
2012-06-08 | Correct method name in comment: from LexRawToken to LexFromRawLexer, according | Dmitri Gribenko |
2012-06-07 | Insert a space if necessary when suggesting CFBridgingRetain/Release. | Jordan Rose |
2012-06-06 | Add a -rewrite-includes option, which is similar to -rewrite-macros, but only... | David Blaikie |
2012-06-06 | Escape \n and \r in doxycomment. | David Blaikie |
2012-05-18 | Lexer::ReadToEndOfLine: Only build the string if it's actually used and do so... | Benjamin Kramer |
2012-04-13 | Support -Wc++98-compat-pedantic as requested: | Seth Cantrell |
2012-04-13 | C++11 no longer requires files to end with a newline | Seth Cantrell |
2012-04-07 | ext_reserved_user_defined_literal must not default to Error in MicrosoftMode.... | Francois Pichet |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie |