aboutsummaryrefslogtreecommitdiff
path: root/lib/Parse/ParseTentative.cpp
AgeCommit message (Expand)Author
2013-04-26Implement C++1y decltype(auto).Richard Smith
2013-04-12Parsing support for thread_local and _Thread_local. We give them the sameRichard Smith
2013-04-03Give the default CorrectionCandidateCallback::ValidateCandidate someKaelyn Uhrain
2013-03-20Teach statement / declaration disambiguation about C++11-style generalized in...Richard Smith
2013-02-07Add OpenCL samplers as Clang builtin types and check sampler related restrict...Guy Benyei
2013-01-20Implement OpenCL event_t as Clang builtin type, including event_t related Ope...Guy Benyei
2013-01-02s/CXX0X/CXX11/g, except for __GNU_EXPERIMENTAL_CXX0X__, and update a few near...Richard Smith
2013-01-02s/CPlusPlus0x/CPlusPlus11/gRichard Smith
2012-12-18Re-commit r170428 changes with Linux style file endings.Guy Benyei
2012-12-18Revert changes from r170428, as I accidentally changed the line endings of th...Guy Benyei
2012-12-18Add OpenCL images as clang builtin types.Guy Benyei
2012-11-14Accept and pass arguments to __unknown_anytype in argumentJohn McCall
2012-09-25Add the Microsoft __is_interface_class type trait.John McCall
2012-08-23When disambiguating an expression-statement from a declaraton-statement, if theRichard Smith
2012-08-18PR41111, PR5925, PR13210: Teach tentative parsing to annotate identifiers andRichard Smith
2012-07-30Improvements to vexing-parse warnings. Make the no-parameters case moreRichard Smith
2012-07-23Do not warn about a function decl / direct init ambiguity if the function has...Richard Smith
2012-06-30Add support for the C11 _Alignof keyword.Jordan Rose
2012-06-23Support L__FUNCTION__ in microsoft mode, PR11789Nico Weber
2012-05-16Recover better from a missing 'typename' in a function template definition.Richard Smith
2012-05-01A couple of very small tweaks suggested by Doug in reply to r155580 and r155163.Kaelyn Uhrain
2012-04-19In Parser::isCXXDeclarationSpecifier, consider a non-type identifierKaelyn Uhrain
2012-04-11Support C++11 attributes at the start of a parameter-declaration.Richard Smith
2012-04-10Parsing of C++11 attributes:Richard Smith
2012-04-10Disambiguation of '[[':Richard Smith
2012-04-09Fix bugs found by -Wconstant-conversion improvements currently under review.David Blaikie
2012-04-04For PR11916: Add support for g++'s __int128 keyword. Unlike __int128_t, this isRichard Smith
2012-03-27If we see '(...' where we're expecting an abstract-declarator, that doesn'tRichard Smith
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie
2012-02-24Implement a new type trait __is_trivially_constructible(T, Args...)Douglas Gregor
2012-02-23Provide the __is_trivially_assignable type trait, which providesDouglas Gregor
2012-02-23Update parser's disambiguation to cope with braced function-style casts inRichard Smith
2012-01-25With a little more work in the tentative parse determining whether a statementNick Lewycky
2012-01-24Support decltype as a simple-type-specifier.David Blaikie
2011-12-23Mass rename C1x references to C11. The name hasn't proliferated like "C++0x" ...Benjamin Kramer
2011-12-20Fix tentative parsing so it knows how to handle an ambiguous for-range-declar...Eli Friedman
2011-12-04Support decltype in nested-name-specifiers.David Blaikie
2011-12-03Implement support for the __is_final type trait, to determine whetherDouglas Gregor
2011-10-14Provide half floating point support as a storage only type.Anton Korobeynikov
2011-10-06Support for C1x _Atomic specifier (see testcase). This is primarily being co...Eli Friedman
2011-09-29Add support for alignment-specifiers in C1X and C++11, removePeter Collingbourne
2011-09-09Modules: introduce the __module_private__ declaration specifier, whichDouglas Gregor
2011-08-25Add support for Microsoft __ptr32 keyword. Francois Pichet
2011-08-18Add support for MSVC __unaligned attribute. Necessary to parse MSVC headers i...Francois Pichet
2011-07-27Add support for C++0x unicode string and character literals, from Craig Topper!Douglas Gregor
2011-06-22Introduce DelayedCleanupPool useful for simplifying clean-up of certain resou...Argyrios Kyrtzidis
2011-05-19Implement __underlying_type for libc++.Sean Hunt
2011-05-13Implement the __is_trivially_copyable type traitSean Hunt
2011-04-28Upgrade Microsoft's __int8, __int16, __int32 and __int64 types from builtin d...Francois Pichet
2011-04-24Add support for '__is_literal_type' spelling of the existingChandler Carruth