view gcc/testsuite/gcc.dg/pr34027-1.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { 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" } } */