aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr106958.c
blob: 98e6554c7367d87c3d1010b6edc9415f62fe3a58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR tree-optimization/106958 */

int a;
void bar (int);

void
foo (char *x, char *y)
{
  int b = a != 0;
  int c = x != 0;
  int d = y != 0;
  bar (b | c | d);
}