aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/execute/pr96549.c
blob: 9d992a82c193a8254d61a27811cc4361e5367100 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* PR c/96549 */

long c = -1L;
long b = 0L;

int
main ()
{
  if (3L > (short) ((c ^= (b = 1L)) * 3L))
    return 0;
  __builtin_abort ();
}