Add compile command to each testcase
[gcc-vect-testsuite.git] / no-scevccp-pr49199.c
blob0f11142eb7517a80b1f45a2b704b1dd8b84a7481
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_int } */
4 int const_bar (void) __attribute__ ((__const__));
5 int pure_bar (void) __attribute__ ((__pure__));
7 int foo (void)
9 int i = 0, x = 0;
10 for (; i < 100; i++)
12 x += const_bar ();
13 x += pure_bar ();
15 return x;
18 /* { dg-final { cleanup-tree-dump "vect" } } */