aboutsummaryrefslogtreecommitdiff
path: root/test/CXX
AgeCommit message (Expand)Author
2013-01-31Improve 'failed template argument deduction' diagnostic for the case where weRichard 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-29Move -Wstatic-float-init fixit into a note & don't recover as if constexprDavid Blaikie
2013-01-29PR15100: look through type sugar when determining whether we have one of theRichard Smith
2013-01-29Fold tests for C++ 'main' into a single file.Richard Smith
2013-01-29Don't crash while printing APValues that are lvalues casted to aDouglas Gregor
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-25Sync 'in class initialization of static const double' extension up with GCC,Richard Smith
2013-01-24Handle universal character names and Unicode characters outside of literals.Jordan Rose
2013-01-18Once we've collected the template arguments for aDouglas Gregor
2013-01-17Add test for PR12938, fixed by Richard Smith in r172691David Blaikie
2013-01-17Test that we correctly handle reversion of line splicing etc in raw stringRichard Smith
2013-01-17Implement C++11 semantics for [[noreturn]] attribute. This required splittingRichard Smith
2013-01-14Refactor to call ActOnFinishFullExpr on every full expression. TeachRichard 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
2013-01-11Fixed an assertion failure triggered by invalid code.Enea Zaffanella
2012-12-28Improve diagnostic wording for when an implicitly-deleted special memberRichard Smith
2012-12-20Implement AST dumper for Decls.Alexander Kornienko
2012-12-11PR14558: Compute triviality of special members (etc) at the end of the classRichard Smith
2012-12-09PR14550: If a system header contains a bogus constexpr function definition,Richard Smith
2012-12-08Finish implementing 'selected constructor' rules for triviality in C++11. InRichard Smith
2012-12-08Properly compute triviality for explicitly-defaulted or deleted special members.Richard Smith
2012-12-08Implement C++03 [dcl.init]p5's checking for value-initialization of referencesRichard Smith
2012-12-07Per [dcl.fct.def.default]p1, don't allow variadic special members to be defau...Richard Smith
2012-12-06Fix http://stackoverflow.com/questions/13521163Richard Smith
2012-11-28Teach Lexer::getSpelling about raw string literals. Specifically, if a rawRichard Smith
2012-11-28Store on the CXXRecordDecl whether the class has, or would have, a copyRichard Smith
2012-11-28C++ core issue 1344, PR10618: promote "addition of default argument makes thisRichard Smith
2012-11-22Fix regression in r168477. Use canonical decl when looking for base classRichard Smith
2012-11-22Fix CXXRecordDecl::forallBases to not look through bases which are dependentRichard Smith
2012-11-22Test that we correctly deal with multiple copy constructors when detectingRichard Smith
2012-11-13Fix some wrong-code bugs in implicitly-defined assignment operators:Richard Smith
2012-11-12Fix more try scoping bugs introduced by r167650.David Blaikie
2012-11-10Handle redeclarations of catch variables in catch blocks.David Blaikie
2012-11-10PR14296: function parameter name collisions in function try/catchDavid Blaikie
2012-11-06Teach Clang parser to reject C++11 attributes that appertain to declaration s...Michael Han
2012-10-25When capturing 'this' in a lambda, make sure to update the set ofDouglas Gregor
2012-10-21PR14141 (part of DR1351): An implicitly-deduced "any" exception specificationRichard Smith
2012-10-20DR1473: Do not require a space between operator"" and the ud-suffix in aRichard Smith
2012-10-20Rework implementation of DR1492: Apply the resolution to operator delete too,Richard Smith
2012-10-19Prior to adding the new "expected-no-diagnostics" directive to VerifyDiagnost...Andy Gibbs
2012-10-19Fix directive parsing in VerifyDiagnosticConsumer so that it ensures that "ex...Andy Gibbs
2012-10-18DR1442: In a range-based for statement, namespace 'std' is not an associatedRichard Smith
2012-10-18Tests for DR1507.Richard Smith
2012-10-17Implement C++ 10.3p16 - overrides involving deleted functions must match.David Blaikie
2012-10-16Move test to a more appropriate place.Eli Friedman