aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr70843.c
blob: c3c9212a0f5ef494fa80667f25bb944cb9a1b1ae (plain)
1
2
3
4
5
6
7
8
9
/* PR middle-end/70843 */
/* { dg-do compile } */
/* { dg-options "-O2" } */

int
foo (int x, int y)
{
  return ({ int a = 5; a += x; a *= y; a; }) ? : 2;
}