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

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

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