LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr51301.c
blobb060c8eb629abd17bb65ce27e2717fe4efe5fe2f
1 /* { dg-do compile } */
3 typedef signed char int8_t;
4 typedef signed long long int64_t;
5 int64_t
6 f0a (int8_t * __restrict__ arg1)
8 int idx;
9 int64_t result = 0;
10 for (idx = 0; idx < 416; idx += 1)
11 result += arg1[idx] << (arg1[idx] == arg1[idx]);
12 return result;