Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / tree-ssa / 20050128-1.c
blob7197ec8b2c7f0536223a6a466a895b96f2c39d71
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-gimple" } */
4 int
5 foo (int align)
7 int off = 0 % align;
8 return off ? align - off : 0;
11 /* We should have optimized away the mod operator before we gimpleized
12 the code. */
13 /* { dg-final { scan-tree-dump-times "%" 0 "gimple"} } */
14 /* { dg-final { cleanup-tree-dump "gimple" } } */