Daily bump.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-arith-overflow2.C
bloba67b0251ba73b393f911bc339fc28a94e50006ce
1 // PR c++/70507 - integer overflow builtins not constant expressions
2 // The constexpr-arith-overflow.C testcase covers this for C++14 and later.
3 // { dg-do compile }
4 // { dg-options "-std=c++11" }
6 #define Assert(expr) static_assert ((expr), #expr)
8 template <class T>
9 constexpr T add (T x, T y, T z = T ())
11   return __builtin_add_overflow (x, y, &z) ? 0 : z;     // { dg-error "is not a constant expression" }
14 template <class T>
15 constexpr T sub (T x, T y, T z = T ())
17   return __builtin_sub_overflow (x, y, &z) ? 0 : z;     // { dg-error "is not a constant expression" }
20 template <class T>
21 constexpr T mul (T x, T y, T z = T ())
23   return __builtin_mul_overflow (x, y, &z) ? 0 : z;     // { dg-error "is not a constant expression" }
26 Assert (0 == add<int>(0, 0));   // { dg-error "non-constant condition for static assertion" }
27 Assert (0 == sub<int>(0, 0));   // { dg-error "non-constant condition for static assertion" }
28 Assert (0 == mul<int>(0, 0));   // { dg-error "non-constant condition for static assertion" }
29 // { dg-message "expansion of" "" { target *-*-* } .-3 }
30 // { dg-message "expansion of" "" { target *-*-* } .-3 }
31 // { dg-message "expansion of" "" { target *-*-* } .-3 }