1 /* Test that data prefetch instructions are not generated for i386 variants
2 that do not support those instructions. */
4 /* { dg-do compile { target { { i?86-*-* x86_64-*-* } && ia32 } } } */
6 extern void exit (int);
8 char *msg
= "howdy there";
12 __builtin_prefetch (p
, 0, 0);
13 __builtin_prefetch (p
, 0, 1);
14 __builtin_prefetch (p
, 0, 2);
15 __builtin_prefetch (p
, 0, 3);
16 __builtin_prefetch (p
, 1, 0);
17 __builtin_prefetch (p
, 1, 1);
18 __builtin_prefetch (p
, 1, 2);
19 __builtin_prefetch (p
, 1, 3);
28 /* { dg-final { scan-assembler-not "fetch" } } */