aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr92063.c
blob: bb704abe0ef1986de1145c314d58dbc409f2389b (plain)
1
2
3
4
5
6
7
/* PR middle-end/92063 */

int
foo (int a, int b, int *c, short *d)
{
  return (c[0] ? b : 0) == 'y' && ((a ? d[0] : c[0]) ? b : 0) == 'c';
}