aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/torture/pr57251.c
blob: 2fe268c36e787fa85feb75d7daa6333ebb749134 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* PR middle-end/57251 */
/* { dg-do compile } */
/* { dg-options "-ftracer" } */

short a, b;
int
f (void)
{
  long long i = 2;
  a ? f () ? : 0 : b--;
  b &= i *= a |= 0;
}