aboutsummaryrefslogtreecommitdiff
path: root/test/CXX/dcl.dcl
AgeCommit message (Expand)Author
2013-05-06C++1y: support 'for', 'while', and 'do ... while' in constant expressions.Richard Smith
2013-05-05C++1y: support for increment and decrement in constant expression evaluation.Richard Smith
2013-05-05Factor out duplication between lvalue-to-rvalue conversions and variableRichard Smith
2013-05-04Implement most of N3638 (return type deduction for normal functions).Richard Smith
2013-05-04Don't build a call expression referring to a function which we're not allowedRichard Smith
2013-05-04Say 'decltype(auto)' not 'auto' as appropriate in mismatched-deduction diagno...Richard Smith
2013-05-04Separate out and special-case the diagnostic for 'auto' in aRichard Smith
2013-04-26Implement C++1y decltype(auto).Richard Smith
2013-04-25Don't mark 'extern "C" void f(void)' as having extern storage class.Rafael Espindola
2013-04-22C++1y constexpr extensions, round 1: Allow most forms of declaration andRichard Smith
2013-04-21The 'constexpr implies const' rule for non-static member functions is gone inRichard Smith
2013-04-08<rdar://problem/13584715> Converted constant expressions are expected to have...Douglas Gregor
2013-03-20Don't look outside the innermost enclosing namespace whenJohn McCall
2013-02-22Don't crash if we try to apply 'alignas' to a variable declared with anRichard Smith
2013-02-22Implement C++11 [dcl.align]p6-p8, and C11 6.7.5/7. This had to be split out ofRichard Smith
2013-02-01Implement [dcl.align]p5 and C11 6.7.5/4: alignas cannot underalign.Richard Smith
2013-01-30Unresolved lookups can have using declarations that refer toDouglas Gregor
2013-01-30[Sema] Constrain test added in r173873 with expected-error-reDavid Blaikie
2013-01-30Provide a fixit for constexpr non-static data members.David Blaikie
2013-01-28Finish semantic analysis for [[carries_dependency]] attribute.Richard Smith
2013-01-28Tests and a minor bugfix for [dcl.attr.depend]p1 (C++11 [[carries_dependency]]Richard Smith
2013-01-17Implement C++11 semantics for [[noreturn]] attribute. This required splittingRichard Smith
2013-01-14Fix regression in r172376. Don't try to detect missing 'constexpr' specifiersRichard Smith
2013-01-14PR12008: defer adding the implicit 'const' to a constexpr member function untilRichard Smith
2012-12-09PR14550: If a system header contains a bogus constexpr function definition,Richard Smith
2012-11-28C++ core issue 1344, PR10618: promote "addition of default argument makes thisRichard Smith
2012-11-06Teach Clang parser to reject C++11 attributes that appertain to declaration s...Michael Han
2012-10-19Prior to adding the new "expected-no-diagnostics" directive to VerifyDiagnost...Andy Gibbs
2012-10-16Implement GCC's -Wint-to-pointer-cast.David Blaikie
2012-10-10Fix a crash-on-invalid when parsing a reference to an invalid auto declarationDavid Blaikie
2012-10-04Egriegious hack to support libstdc++4.6's broken <atomic> header, which definesRichard Smith
2012-10-03Improve C++11 attribute parsing.Michael Han
2012-07-08PR13293: Defer deduction of an auto type with a dependent declarator, such as...Richard Smith
2012-06-12If parsing a trailing-return-type fails, don't pretend we didn't have one atRichard Smith
2012-06-10Fix PR13052 properly, by performing special member lookup to determine whetherRichard Smith
2012-05-11When diagnosing inaccessible temporary destructors in decltype expressions, useRichard Smith
2012-05-09Push the knowledge that we are parsing a type-id/type-name further into theRichard Smith
2012-04-10Disambiguation of '[[':Richard Smith
2012-04-05Temporary workaround for bug#12457: turn the 'constexpr function never producesRichard Smith
2012-03-13Fix PR10447: lazily building name lookup tables for DeclContexts was broken.Richard Smith
2012-03-12Fix parsing of trailing-return-type. Types are syntactically prohibited fromRichard Smith
2012-03-12Fix parsing of type-specifier-seq's. Types are syntactically allowed to beRichard Smith
2012-03-05static_assert: Allow any string-literal as the message, not just a characterRichard Smith
2012-02-22Accept braced-init-lists in conditions, and, in passing, dramatically improveRichard Smith
2012-02-22Implement C++11 [expr.call]p11: If the operand to a decltype-specifier is aRichard Smith
2012-02-20Fix a constexpr FIXME: When implicitly instantiating the primary template for anRichard Smith
2012-02-16constexpr tidyups:Richard Smith
2012-02-13Update constexpr implementation to match CWG's chosen approach for core issuesRichard Smith
2012-02-12Implement the standard decltype() semantics described in C++11Douglas Gregor
2012-02-10PR11684, core issue 1417:Richard Smith