| Commit message (Expand) | Author | Age | Files | Lines |
* | Replace a fake enum class with the real thing. | Richard Smith | 2014-05-16 | 1 | -174/+174 |
* | Add support for MSVC's __FUNCSIG__ | Reid Kleckner | 2014-04-08 | 1 | -0/+1 |
* | TryConsume parser cleanups | Alp Toker | 2014-01-10 | 1 | -9/+4 |
* | Remove OpenCL-specific type keywords and specifiers | Alp Toker | 2013-12-18 | 1 | -8/+0 |
* | Unify type trait parsing | Alp Toker | 2013-12-12 | 1 | -27/+3 |
* | Replaced bool parameters in SkipUntil function with single bit-based parameter. | Alexey Bataev | 2013-11-18 | 1 | -13/+12 |
* | [-fms-extensions] Add support for __FUNCDNAME__ | David Majnemer | 2013-11-06 | 1 | -0/+1 |
* | [-fms-extensions] Permit 'override' in C++98 and 'sealed' as a synonym for 'f... | David Majnemer | 2013-10-18 | 1 | -0/+1 |
* | PR13657 (and duplicates): | Richard Smith | 2013-09-12 | 1 | -82/+313 |
* | Adding in parsing and the start of semantic support for __sptr and __uptr poi... | Aaron Ballman | 2013-05-22 | 1 | -0/+2 |
* | Implement C++1y decltype(auto). | Richard Smith | 2013-04-26 | 1 | -0/+1 |
* | Parsing support for thread_local and _Thread_local. We give them the same | Richard Smith | 2013-04-12 | 1 | -4/+9 |
* | Give the default CorrectionCandidateCallback::ValidateCandidate some | Kaelyn Uhrain | 2013-04-03 | 1 | -0/+1 |
* | Teach statement / declaration disambiguation about C++11-style generalized in... | Richard Smith | 2013-03-20 | 1 | -7/+21 |
* | Add OpenCL samplers as Clang builtin types and check sampler related restrict... | Guy Benyei | 2013-02-07 | 1 | -0/+1 |
* | Implement OpenCL event_t as Clang builtin type, including event_t related Ope... | Guy Benyei | 2013-01-20 | 1 | -0/+1 |
* | s/CXX0X/CXX11/g, except for __GNU_EXPERIMENTAL_CXX0X__, and update a few near... | Richard Smith | 2013-01-02 | 1 | -1/+1 |
* | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith | 2013-01-02 | 1 | -5/+5 |
* | Re-commit r170428 changes with Linux style file endings. | Guy Benyei | 2012-12-18 | 1 | -0/+6 |
* | Revert changes from r170428, as I accidentally changed the line endings of th... | Guy Benyei | 2012-12-18 | 1 | -1580/+1574 |
* | Add OpenCL images as clang builtin types. | Guy Benyei | 2012-12-18 | 1 | -1574/+1580 |
* | Accept and pass arguments to __unknown_anytype in argument | John McCall | 2012-11-14 | 1 | -0/+4 |
* | Add the Microsoft __is_interface_class type trait. | John McCall | 2012-09-25 | 1 | -0/+1 |
* | When disambiguating an expression-statement from a declaraton-statement, if the | Richard Smith | 2012-08-23 | 1 | -10/+29 |
* | PR41111, PR5925, PR13210: Teach tentative parsing to annotate identifiers and | Richard Smith | 2012-08-18 | 1 | -8/+83 |
* | Improvements to vexing-parse warnings. Make the no-parameters case more | Richard Smith | 2012-07-30 | 1 | -17/+7 |
* | Do not warn about a function decl / direct init ambiguity if the function has... | Richard Smith | 2012-07-23 | 1 | -1/+1 |
* | Add support for the C11 _Alignof keyword. | Jordan Rose | 2012-06-30 | 1 | -0/+1 |
* | Support L__FUNCTION__ in microsoft mode, PR11789 | Nico Weber | 2012-06-23 | 1 | -0/+1 |
* | Recover better from a missing 'typename' in a function template definition. | Richard Smith | 2012-05-16 | 1 | -12/+48 |
* | A couple of very small tweaks suggested by Doug in reply to r155580 and r155163. | Kaelyn Uhrain | 2012-05-01 | 1 | -2/+1 |
* | In Parser::isCXXDeclarationSpecifier, consider a non-type identifier | Kaelyn Uhrain | 2012-04-19 | 1 | -2/+6 |
* | Support C++11 attributes at the start of a parameter-declaration. | Richard Smith | 2012-04-11 | 1 | -0/+5 |
* | Parsing of C++11 attributes: | Richard Smith | 2012-04-10 | 1 | -4/+3 |
* | Disambiguation of '[[': | Richard Smith | 2012-04-10 | 1 | -63/+141 |
* | Fix bugs found by -Wconstant-conversion improvements currently under review. | David Blaikie | 2012-04-09 | 1 | -2/+2 |
* | For PR11916: Add support for g++'s __int128 keyword. Unlike __int128_t, this is | Richard Smith | 2012-04-04 | 1 | -0/+2 |
* | If we see '(...' where we're expecting an abstract-declarator, that doesn't | Richard Smith | 2012-03-27 | 1 | -3/+10 |
* | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 2012-03-11 | 1 | -11/+11 |
* | Implement a new type trait __is_trivially_constructible(T, Args...) | Douglas Gregor | 2012-02-24 | 1 | -0/+1 |
* | Provide the __is_trivially_assignable type trait, which provides | Douglas Gregor | 2012-02-23 | 1 | -0/+1 |
* | Update parser's disambiguation to cope with braced function-style casts in | Richard Smith | 2012-02-23 | 1 | -4/+28 |
* | With a little more work in the tentative parse determining whether a statement | Nick Lewycky | 2012-01-25 | 1 | -2/+25 |
* | Support decltype as a simple-type-specifier. | David Blaikie | 2012-01-24 | 1 | -4/+1 |
* | Mass rename C1x references to C11. The name hasn't proliferated like "C++0x" ... | Benjamin Kramer | 2011-12-23 | 1 | -1/+1 |
* | Fix tentative parsing so it knows how to handle an ambiguous for-range-declar... | Eli Friedman | 2011-12-20 | 1 | -5/+14 |
* | Support decltype in nested-name-specifiers. | David Blaikie | 2011-12-04 | 1 | -4/+4 |
* | Implement support for the __is_final type trait, to determine whether | Douglas Gregor | 2011-12-03 | 1 | -0/+1 |
* | Provide half floating point support as a storage only type. | Anton Korobeynikov | 2011-10-14 | 1 | -0/+2 |
* | Support for C1x _Atomic specifier (see testcase). This is primarily being co... | Eli Friedman | 2011-10-06 | 1 | -0/+5 |