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