OSDN Git Service

2011-11-01 Tom de Vries <tom@codesourcery.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-pre-21.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-pre" } */
3
4 long
5 NumSift (long *array, unsigned long k)
6 {
7   if (array[k] < array[k + 1L])
8     ++k;
9   return array[k];
10 }
11
12 /* There should be only two loads left.  */
13
14 /* { dg-final { scan-tree-dump-times "= \\\*D\[^\n;\]*;" 2 "pre" } } */
15 /* { dg-final { cleanup-tree-dump "pre" } } */