aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr34027-1.c
blob: 8e8872a51332c0dcd076ba4f142ec881f7ce8a70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { dg-do compile } */
/* { dg-options "-Os -fdump-tree-optimized" } */

unsigned long foobar(unsigned long ns)
{
  while(ns >= 10000L)
    ns -= 10000L;
  return ns;
}

/* This test was originally introduced to test that we transform
   to ns % 10000.  See the discussion of PR 32044 why we do not do
   that anymore.  */
/* { dg-final { scan-tree-dump-times "%" 0 "optimized" } } */
/* { dg-final { scan-tree-dump-times "/" 0 "optimized" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */