aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/ubsan/pr106099.c
blob: e3f17b34681ad0fa19f64f1bc47543b35abfe166 (plain)
1
2
3
4
5
6
7
8
9
10
/* PR tree-optimization/106099 */
/* { dg-do compile } */
/* { dg-options "-O -fsanitize=unreachable -fsanitize-undefined-trap-on-error -fno-tree-ccp -fno-tree-dominator-opts" } */

void
foo (void)
{
  for (unsigned i = 0; i == 0; i++)
    ;
}