aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr99225.c
blob: 0ef7602035e89cd014e0e49508ef9a4e6463b4fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* PR tree-optimization/99225 */

typedef int V __attribute__((vector_size (4 * sizeof (int))));

void
foo (V *x)
{
  x[2] = (x[0] & (1 << x[1])) != 0;
}

void
bar (V *x)
{
  x[2] = ((1 << x[1]) & x[0]) != 0;
}

void
baz (V *x)
{
  V a = 1 << x[1];
  V b = a & x[0];
  x[2] = b != 0;
}

void
qux (V *x)
{
  V a = 1 << x[1];
  V b = x[0] & a;
  x[2] = b != 0;
}