aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/vect/pr50727.c
blob: 896b614b9b839c93148e7d16661e4e8ede4a44f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do compile } */

typedef unsigned char uint8_t;
typedef unsigned long uint32_t;
void
f0a (uint32_t * __restrict__ result, uint32_t * arg2,
     uint8_t * __restrict__ arg4)
{
  int idx;
  for (idx = 0; idx < 429; idx += 1)
    {
      uint32_t temp_9;
      uint32_t temp_11;
      temp_9 = ((-19 | arg4[idx]) >> arg2[idx]);
      temp_11 = (((-19 ^ arg4[idx]) & arg2[idx]) ^ temp_9);
      result[idx] = temp_11;
    }
}

/* { dg-final { cleanup-tree-dump "vect" } } */