URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [constexpr-overflow.C] - Rev 693
Compare with Previous | Blame | View Log
// { dg-options "-std=c++0x -w" }
#include <limits.h>
extern constexpr int max_s = INT_MAX + 1; // { dg-error "" }
extern constexpr unsigned max_u = UINT_MAX + 1u; // OK
extern constexpr int abs_s = -INT_MIN; // { dg-error "" } overflows on 2's complement machines