aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/20050128-1.c
blob: ea48b268d47d795f5329dc864e23179449d63e6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-generic" } */

int
foo (int align)
{
  int off = 0 % align;
  return off ? align - off : 0;
}

/* We should have optimized away the mod operator before we genericized
   the code.  */
/* { dg-final { scan-tree-dump-times "%" 0 "generic"} } */