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 749
Go to most recent revision | 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; // OKextern constexpr int abs_s = -INT_MIN; // { dg-error "" } overflows on 2's complement machines
Go to most recent revision | Compare with Previous | Blame | View Log
