aboutsummaryrefslogtreecommitdiff
path: root/lib/Parse/ParseTentative.cpp
AgeCommit message (Expand)Author
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
2011-04-23Implement basic __is_trivial type-trait support, enough to close PR9472.Chandler Carruth
2011-04-23Sort the type traits in a few places where they weren't previouslyChandler Carruth
2011-04-15C1X: implement static assertsPeter Collingbourne
2011-03-24Insomniac refactoring: change how the parser allocates attributes so thatJohn McCall
2011-03-12Propagate the new exception information to FunctionProtoType.Sebastian Redl
2011-03-02Push nested-name-specifier source-location information into dependentDouglas Gregor
2011-01-27Implement the Microsoft __is_convertible_to type trait, modeling theDouglas Gregor
2011-01-26Rvalue references for *this: tentative parsing and template argument deduction.Douglas Gregor
2011-01-20Add some tests for reference-collapsing and referencing bindingDouglas Gregor
2011-01-18Fix warnings found by gcc-4.6, from -Wunused-but-set-variable andJeffrey Yasskin
2010-12-24Refactor how we collect attributes during parsing, and add slots for attributesJohn McCall
2010-12-23Implement parsing of function parameter packs and non-type templateDouglas Gregor
2010-12-08Handle parameter attributes when tentative parsing for function/variable disa...Argyrios Kyrtzidis
2010-12-01After parsing a ':' in an enum-specifier within class context,Douglas Gregor
2010-10-21Teach the C++ simple-type-specifier parser and tentative parses aboutDouglas Gregor
2010-10-11Add parsing support for Microsoft attributes. MS attributes will just be skip...Francois Pichet
2010-09-28enhance tentative parsing to handle ms extensions, patch by Martin Vejnar!Chris Lattner
2010-09-16Implement automatic bracket insertion for Objective-C class messageDouglas Gregor
2010-09-03Add symantic support for the Pascal calling convention viaDawn Perchik
2010-08-29ObjClang++: Allow declaration of block variable in a collectionFariborz Jahanian