comparison libgomp/testsuite/libgomp.graphite/pr41118.c @ 63:b7f97abdc517 gcc-4.6-20100522

update gcc from gcc-4.5.0 to gcc-4.6
author ryoma <e075725@ie.u-ryukyu.ac.jp>
date Mon, 24 May 2010 12:47:05 +0900
parents
children 04ced10e8804
comparison
equal deleted inserted replaced
56:3c8a44c06a95 63:b7f97abdc517
1 void foo(int *a, int *b)
2 {
3 int i;
4 int *c = b+1;
5
6 for (i = 0; i < 100; i++)
7 a[i] = c[i];
8 }
9
10 int main(void)
11 {
12 return 0;
13 }
14
15 /* Check that parallel code generation part make the right answer. */
16 /* { dg-final { cleanup-tree-dump "graphite" } } */
17 /* { dg-final { scan-tree-dump-times "loopfn" 0 "optimized" } } */
18 /* { dg-final { cleanup-tree-dump "parloops" } } */
19 /* { dg-final { cleanup-tree-dump "optimized" } } */