URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [vect/] [vect-99.c] - Rev 399
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-require-effective-target vect_int } */ #include <stdlib.h> #include "tree-vect.h" int ca[100]; __attribute__ ((noinline)) void foo (int n) { unsigned int i; for (i = 0; i < n; i++) ca[i] = 2; } int main (void) { int i; check_vect (); foo(100); for (i = 0; i < 100; ++i) { if (ca[i] != 2) abort(); } return 0; } /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */ /* { dg-final { cleanup-tree-dump "vect" } } */
Go to most recent revision | Compare with Previous | Blame | View Log