aboutsummaryrefslogtreecommitdiff
path: root/test/CXX/expr/expr.const/p2-0x.cpp
AgeCommit message (Expand)Author
2013-04-21The 'constexpr implies const' rule for non-static member functions is gone inRichard Smith
2013-01-29Don't crash while printing APValues that are lvalues casted to aDouglas Gregor
2012-07-17Don't treat overflow in floating-point conversions as a hard error in constan...Eli Friedman
2012-03-02Ensure that we instantiate static reference data members of class templatesRichard Smith
2012-02-15Implement DR1454. This allows all intermediate results in constant expressionsRichard Smith
2012-02-13Update constexpr implementation to match CWG's chosen approach for core issuesRichard Smith
2012-02-10Update to new resolution for DR1458. When taking the address of an object ofRichard Smith
2012-02-08Implement DR1458: Taking the address of an object of incomplete class type isRichard Smith
2012-02-08Implement the agreed resolution to DR1457: a signed left shift of a 1 bit intoRichard Smith
2012-02-05constexpr: Fix implementation of DR1311: check for volatile qualifiers inRichard Smith
2012-02-04In C++11 mode, when an integral constant expression is desired and we have aRichard Smith
2012-02-02constexpr:Richard Smith
2012-02-01constexpr: check for overflow in pointer subtraction.Richard Smith
2012-02-01constexpr: overflow checking for integral and floating-point arithmetic.Richard Smith
2012-02-01constexpr: require 'this' to point to an object in a constexpr method call.Richard Smith
2012-01-31constexpr: Treat INT_MIN % -1 as undefined behavior in C++11. Technically, itRichard Smith
2012-01-31constexpr: the result of a relational operator between pointers to void isRichard Smith
2012-01-31constexpr: catch a collection of integral undefined behaviors:Richard Smith
2012-01-31constexpr: remove integral conversion overflow checking introduced in r149286.Richard Smith
2012-01-30constexpr: disallow signed integer overflow in integral conversions in constantRichard Smith
2012-01-18constexpr: converted constant expression handling for enumerator values, caseRichard Smith
2012-01-15Pedantic diagnostic correction: in C++, we have integral constant expressions,Richard Smith
2012-01-12Allow constant-folding of references which were formed in a manner not permittedRichard Smith
2012-01-06C++11 generalized constant expressions: implement checking and diagnostics forRichard Smith
2011-12-30Unrevert r147271, reverted in r147361.Richard Smith
2011-12-30Revert r147271. This fixes PR11676.Rafael Espindola
2011-12-27constexpr: support for evaluation and codegen of typeid constants.Richard Smith
2011-12-25constexpr: perform zero-initialization prior to / instead of performing aRichard Smith
2011-12-21constexpr: diagnostic improvements for invalid lvalue-to-rvalue conversions inRichard Smith
2011-12-19constexpr handling improvements. Produce detailed diagnostics when a 'constexpr'Richard Smith
2011-12-16Reduce recursion limit on this test further to try to make the msys bot green.Richard Smith
2011-12-16C++11 constexpr: Add note stacks containing backtraces if constant evaluationRichard Smith
2011-12-14Halve the constexpr recursion depth in this test in an attempt to make theRichard Smith
2011-12-13Add checks and diagnostics for many of the cases which C++11 considers to notRichard Smith
2011-10-13Update all tests other than Driver/std.cpp to use -std=c++11 rather thanRichard Smith
2011-05-24Implement the initial part of C++0x [expr.const]p2, which specifiesDouglas Gregor