mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-22 05:37:44 +01:00
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@42247 a95241bf-73f2-0310-859d-f6bbb57e9c96
20 lines
428 B
C
20 lines
428 B
C
void foo(int *a, int *b)
|
|
{
|
|
int i;
|
|
int *c = b+1;
|
|
|
|
for (i = 0; i < 100; i++)
|
|
a[i] = c[i];
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/* Check that parallel code generation part make the right answer. */
|
|
/* { dg-final { cleanup-tree-dump "graphite" } } */
|
|
/* { dg-final { scan-tree-dump-times "loopfn" 0 "optimized" } } */
|
|
/* { dg-final { cleanup-tree-dump "parloops" } } */
|
|
/* { dg-final { cleanup-tree-dump "optimized" } } */
|