aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr104279.c
blob: 7c4fc20b4d6660aba559f82e511c3cec16d1685e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* PR tree-optimization/104279 */
/* { dg-do compile } */

unsigned a, b;

int
main ()
{
  b = ~(0 || ~0);
  a = ~b / ~a;
  return 0;
}