aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr56571.c
blob: 248148c9ff847a9088131477dea582ce2aa05ebc (plain)
1
2
3
4
5
6
7
8
/* { dg-options "-funroll-loops -ftracer" } */
int a, b;

int f(void)
{
    (a % b) && f();
    a = (0 || a | (a ? : 1));
}