aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/vect/pr97730.c
blob: af4bca448798b50344c4246a68ae9e36c2ae48a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-additional-options "-O1" } */
unsigned b = 0xce8e5a48, c = 0xb849691a;
unsigned a[8080];
int main() {
  a[0] = b;
  c = c;
  unsigned f = 0xb1e8;
  for (int h = 0; h < 5; h++)
    a[h] = (b & c) ^ f;
  if (a[0] != 0x8808f9e0)
    __builtin_abort();
}