Age | Commit message (Expand) | Author | Files | Lines |
2013-11-28 | Merging r195888: | Bill Wendling | 1 | -0/+89 |
2013-10-12 | Relax header guard mismatch warning with edit distance heuristic. | Ismail Pazarbasi | 2 | -0/+6 |
2013-09-28 | Mark lambda init-captures as complete. | Richard Smith | 2 | -1/+18 |
2013-09-27 | Mark variable template implementation as complete. Nearly all of the credit | Richard Smith | 2 | -5/+16 |
2013-09-26 | Add macro test from N3781. | Richard Smith | 1 | -0/+5 |
2013-09-26 | Per updates to D3781, allow underscore under ' in a pp-number, and allow ' in... | Richard Smith | 1 | -2/+6 |
2013-09-26 | Implement C++1y digit separator proposal (' as a digit separator). This is not | Richard Smith | 2 | -0/+35 |
2013-09-13 | Lex and ignore Microsoft's #pragma warning(...) | Reid Kleckner | 1 | -0/+22 |
2013-09-05 | Add specific warning flags for GNU ext in lexer. | Eli Friedman | 1 | -0/+56 |
2013-08-23 | Revise -Wnewline-eof test per feedback from Dmitri. | Jordan Rose | 1 | -6/+6 |
2013-08-23 | Respect -Wnewline-eof even in C++11 mode. | Jordan Rose | 3 | -8/+10 |
2013-08-21 | Revert r188863 which could propose wrong fixits for multibyte character liter... | Nick Lewycky | 1 | -11/+0 |
2013-08-21 | Issue fixits replacing invalid character literals with the equivalent \xNN | Nick Lewycky | 1 | -0/+11 |
2013-08-12 | Fix FileCheck --check-prefix lines. | Tim Northover | 2 | -3/+3 |
2013-07-26 | Partially revert r186903. | Eli Friedman | 1 | -1/+1 |
2013-07-24 | Update documentation to match current C++1y feature set. | Richard Smith | 1 | -0/+20 |
2013-07-23 | Integers which are too large should be an error. | Eli Friedman | 1 | -1/+6 |
2013-07-04 | Add 'not' to commands that are expected to fail. | Rafael Espindola | 3 | -3/+3 |
2013-06-16 | PR16339: Don't produce a diagnostic pointing at the whitespace between a '#if' | Richard Smith | 2 | -1/+15 |
2013-06-12 | Introducing -Wheader-guard, a warning that checks header guards actually work | Richard Trieu | 8 | -0/+66 |
2013-05-15 | Better diagnostics for string initialization. | Hans Wennborg | 1 | -4/+0 |
2013-05-12 | C++1y: provide full 'auto' return type deduction for lambda expressions. This | Richard Smith | 1 | -0/+10 |
2013-05-07 | C++1y: Update __cplusplus to temporary value 201305L to allow detection of pr... | Richard Smith | 2 | -64/+124 |
2013-05-04 | Reverting r181004 since it has broken test/Sema/wchar.c. | Aaron Ballman | 2 | -24/+0 |
2013-05-03 | Support __wchar_t in -fms-extensions and -fms-compatibility modes. | Hans Wennborg | 2 | -0/+24 |
2013-05-02 | Use a triple ensure that __has_feature(c_thread_local) is 1 in C11 mode. | Douglas Gregor | 1 | -1/+1 |
2013-05-02 | Only evaluate __has_feature(c_thread_local) and __has_feature(cxx_thread_loca... | Douglas Gregor | 1 | -2/+4 |
2013-04-19 | Note that we support (and in fact have supported since the dawn of time itself) | Richard Smith | 1 | -0/+19 |
2013-04-19 | Keep the parentheses in #pragma message (partial revert of r179771). | Andy Gibbs | 2 | -3/+3 |
2013-04-19 | C++11 support is now feature-complete. | Richard Smith | 2 | -0/+27 |
2013-04-18 | Dropped the parentheses for #pragma message and its kin in the -E output gene... | Andy Gibbs | 2 | -1/+20 |
2013-04-17 | Implemented #pragma GCC warning/error in the same mould as #pragma message. | Andy Gibbs | 1 | -0/+16 |
2013-03-11 | Add -Wc99-compat warning for C11 unicode string and character literals. | Richard Smith | 1 | -0/+21 |
2013-03-09 | When lexing in C11 mode, accept unicode character and string literals, per C11 | Richard Smith | 3 | -1/+33 |
2013-03-09 | Handle _Pragma on a u8, u, or U string literal per the C11 specification. Also | Richard Smith | 1 | -1/+19 |
2013-03-06 | After issuing a diagnostic for undefining or redefining a builtin macro, | Richard Smith | 1 | -0/+19 |
2013-01-31 | Lexer: Don't warn about Unicode in preprocessor directives. | Jordan Rose | 2 | -0/+15 |
2013-01-30 | Fix comment in test/Lexer/utf8-invalid.c for updates in r173959. | Jordan Rose | 1 | -2/+1 |
2013-01-30 | Fix r173881 to properly skip invalid UTF-8 characters in raw lexing and -E. | Jordan Rose | 1 | -0/+6 |
2013-01-30 | Don't warn about Unicode characters in -E mode. | Jordan Rose | 1 | -0/+9 |
2013-01-28 | FileCheck'ize and merge tests | Dmitri Gribenko | 2 | -6/+9 |
2013-01-28 | PR15067 (again): Don't warn about UCNs in C90 if we're raw-lexing. | Jordan Rose | 1 | -0/+3 |
2013-01-27 | PR15067: Don't assert when a UCN appears in a C90 file. | Jordan Rose | 1 | -2/+4 |
2013-01-26 | Migrate tests to -verify | Dmitri Gribenko | 2 | -2/+5 |
2013-01-24 | FileCheck'ize test | Dmitri Gribenko | 1 | -6/+7 |
2013-01-24 | As an extension, treat Unicode whitespace characters as whitespace. | Jordan Rose | 1 | -0/+6 |
2013-01-24 | Handle universal character names and Unicode characters outside of literals. | Jordan Rose | 1 | -0/+6 |
2013-01-23 | Don't check lines beginning with '#', since they could contain a path with th... | Bill Wendling | 1 | -1/+1 |
2013-01-23 | The diagnostic is now a warning instead of an error. Also don't check lines b... | Bill Wendling | 1 | -1/+1 |
2013-01-16 | Add raw string literal versus C preprocessor test, suggested by James Dennett. | Richard Smith | 1 | -0/+9 |