comparison gcc/testsuite/g++.dg/ext/constexpr-pr82781.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 // PR c++/82781
2 // { dg-do compile { target c++11 } }
3
4 typedef int V __attribute__ ((vector_size (16)));
5 constexpr V b1 = { 0, 1, 10, 20 };
6 constexpr V b2 = { 0, 2, 10, 0 };
7 constexpr V b3 = b1 == b2;
8
9 static_assert (b3[0] == -1, "");
10 static_assert (b3[1] == 0, "");
11 static_assert (b3[2] == -1, "");
12 static_assert (b3[3] == 0, "");