blob: bcf257527c08ef25a48695e22df7c63b2b49c8a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* Check that the combination of -Os and -fprefetch-loop-arrays does not
cause the compiler to crash, which it originally did on i?86.
Warnings are turned off because not all targets support prefetch. */
/* { dg-do compile } */
/* { dg-options "-Os -fprefetch-loop-arrays -w" } */
/* { dg-options "-Os -fprefetch-loop-arrays -mtune=pentium3 -w" { target { i?86-*-* && ilp32 } } } */
/* { dg-options "-Os -fprefetch-loop-arrays -mtune=pentium3 -w" { target { x86_64-*-* && ilp32 } } } */
int foo (int *p, int n)
{
int i, r;
for (i = 0; i < n; i++)
r += p[i];
return r;
}
|