blob: 8ac16137f78ba9ee9dc188e8078364a18a3b902e (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* { dg-do compile } */
/* { dg-options "-O2" } */
/* { dg-options "-O2 -msse -mregparm=3" { target ia32 } } */
void p (int *a, int i)
{
__builtin_prefetch (&a[i]);
}
/* { dg-final { scan-assembler-not "lea\[lq\]?\[ \t\]" } } */
|